11 2020 档案

windows 下mysql数据库整库导入导出
摘要:1. mysqldump -uroot -proot gac_1124 > f:\bb.txt 2. mysql -uroot -proot 3. use gac_1127 4. source f:\bb.txt 注:如果是用Navicat "转储SQL文件"生成的.sql后缀的文件,需要使用 so 阅读全文

posted @ 2020-11-27 18:45 谦虚好学每一天 阅读(172) 评论(0) 推荐(0)

配置前后端CD/CI
摘要:CD/CI1.前端:package.json"build": "" //正式环境"build-qa":"" //qa环境 .gitlab-ci.yml //正式环境和qa环境需要写不同的脚本script:将编译后的包在不同环境拷到不同的目录only: - master 或 - master-qa / 阅读全文

posted @ 2020-11-26 10:48 谦虚好学每一天 阅读(249) 评论(0) 推荐(0)

springboot maven 打包命令
摘要:mvn clean package -Dmaven.test.skip=true -e 阅读全文

posted @ 2020-11-25 21:11 谦虚好学每一天 阅读(260) 评论(0) 推荐(0)

谷歌访问助手
摘要:具体代码见本人github. 按照代码安装后,即可使用谷歌网上应用店。 阅读全文

posted @ 2020-11-23 22:52 谦虚好学每一天 阅读(12) 评论(0) 推荐(0)

后台返回字节流,前端在页面显示(如pdf/svg/img)
摘要:摘自:https://blog.csdn.net/sinat_39648402/article/details/105664037 Axios({ methods: 'GET', url: ‘url’, responseType: 'blob'//这里意思是接收返回文件格式 }).then(res 阅读全文

posted @ 2020-11-09 07:45 谦虚好学每一天 阅读(2121) 评论(0) 推荐(0)

angular lint 长度超过140的处理方法 和 禁止 箭头函数处理方法
摘要:在该行代码上面加上: // tslint:disable-next-line:max-line-length 允许使用箭头函数 // tslint:disable-next-line: only-arrow-functions 阅读全文

posted @ 2020-11-03 20:42 谦虚好学每一天 阅读(175) 评论(0) 推荐(0)

导航