会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Loading
小飞猪咯咯
壮哉我大黑魂!!!赞美太阳!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
9
10
11
12
···
19
下一页
2019年12月1日
vue cli3使用webpack4打包优化
摘要: 去掉console.log,以及开启gzip const CompressionPlugin = require('compression-webpack-plugin');//引入gzip压缩插件 configureWebpack: (config) => { if (process.env.NO
阅读全文
posted @ 2019-12-01 13:26 小飞猪咯咯
阅读(1616)
评论(0)
推荐(0)
2019年11月22日
vue使用axios提交formdata格式的数据
摘要: 参考: https://www.cnblogs.com/qwert1/p/8909455.html https://blog.csdn.net/qq_42984640/article/details/89923797 https://blog.csdn.net/qq_42394457/article
阅读全文
posted @ 2019-11-22 14:30 小飞猪咯咯
阅读(1773)
评论(0)
推荐(0)
2019年11月20日
windows、linux使用查看、杀死进程
摘要: windows10查看某个进程: netstat -ano | findstr 端口号 杀死某个进程: taskkill /f /pid 进程号 linux查看占用端口的进程: netstat -apn | grep 进程号 netstat -nltp | grep 进程号 杀死进程: kill -
阅读全文
posted @ 2019-11-20 22:58 小飞猪咯咯
阅读(228)
评论(0)
推荐(0)
2019年11月19日
分离vue文件,方便后期维护
摘要: 参考: https://www.cnblogs.com/wy120/p/10179901.html https://blog.csdn.net/sinat_36146776/article/details/89918302 我的习惯是,分离js和css,html写在vue文件中 js: // --
阅读全文
posted @ 2019-11-19 13:59 小飞猪咯咯
阅读(467)
评论(0)
推荐(0)
2019年11月18日
vue:使用element-ui制作动态表格
摘要: 参考; https://github.com/PanJiaChen/vue-element-admin/blob/master/src/views/table/dynamic-table/components/FixedThead.vue 一、制作下拉多选框 <el-dropdown :hide-o
阅读全文
posted @ 2019-11-18 22:01 小飞猪咯咯
阅读(4505)
评论(0)
推荐(0)
调整element-ui中多个button处于同一行
摘要: 参考: https://element.eleme.cn/#/zh-CN/component/dropdown <el-row> <el-button-group style="margin-bottom:20px"> <el-button size="small" type="primary" i
阅读全文
posted @ 2019-11-18 20:35 小飞猪咯咯
阅读(12859)
评论(0)
推荐(0)
2019年11月17日
记录:使用springboot的cors和vue的axios进行跨域
摘要: 一、编写一个配置类,并且注册CorsFilter: 注意允许跨域的域名不要写错 @Configuration public class ZysuyuanCorsConfiguration { @Bean public CorsFilter corsFilter() { // 初始化cors配置对象
阅读全文
posted @ 2019-11-17 16:55 小飞猪咯咯
阅读(965)
评论(0)
推荐(0)
2019年11月16日
使用HttpStaus自定义返回状态
摘要: 一、导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <!-- 这个是剔除掉自带的 tomcat部署的--> <exclusio
阅读全文
posted @ 2019-11-16 18:04 小飞猪咯咯
阅读(380)
评论(0)
推荐(0)
2019年11月15日
springboot2.0 使用aop实现PageHelper分页
摘要: 参考: https://blog.csdn.net/qq_24076135/article/details/85212081 https://www.jianshu.com/p/036d31ae77d3 一、编写分页实体类 /** * 此类用于返回分页结果集 * @param <T> */ publ
阅读全文
posted @ 2019-11-15 20:34 小飞猪咯咯
阅读(787)
评论(0)
推荐(0)
解决Mysql因内存不足启动失败的问题
摘要: 参考:https://www.jb51.net/article/136432.htm 一、查看内存 free -h free -m 二、解决方法: 1、增加swap交换空间解决问题: dd if=/dev/zero of=/swapfile bs=1M count=1024 mkswap /swap
阅读全文
posted @ 2019-11-15 20:12 小飞猪咯咯
阅读(363)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
···
19
下一页
公告