摘要:
f12 查看接口参数 右键参数对象会出现Store as global variable 点击Store as global variable后,下方console会出现temp变量,例如 temp1 输入copy(temp1)命令,此时参数会被复制到粘贴板, 直接ctrl + v正常粘贴即可啦! 阅读全文
摘要:
nginx 配置多个 ssl 证书 在 usr/local/nginx/conf/下,新增ssl 文件夹,专门存放ssl 证书 在server 中,以 443 端口监听,并列写多个server, 针对不同的server_name, 配置对应的ssl证书, 注意:记得针对非https的普通域名也要创建 阅读全文
摘要:
vue-cli 打包去掉 console.log() 日志 1.安装依赖 npm install babel-plugin-transform-remove-console --save-dev 2.找到babel.config.js文件, 代码如下: const plugins = ["@vue/ 阅读全文
摘要:
启动任务 # 启动app.js pm2 start app.js 启动任务,并在文件变化时自动重启 pm2 start app.js --watch 启动任务并重命名 pm2 start app.js --name newName 启动任务,在文件变化时自动重启,并重命名 pm2 start app 阅读全文
摘要:
linux一键安装包内置了XXD、apache, php, mysql这些应用程序,不需要再单独安装部署。 说在前面 本文使用系统:CentOS 7 一、安装 禅道软件下载地址:http://www.zentao.net/download.html 或者 直接下载: wget https://www 阅读全文