上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 87 下一页
摘要: 1. proxy_pass代理 1.1 location和proxy_pass后面的/必须保留 1.2 proxy_pass后面的http://必须带上,不带会报404 server { location /a/ { proxy_pass http://www.baidu.com/; } locat 阅读全文
posted @ 2022-10-15 14:17 全玉 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 1. 查找nginx which nginx 输出 /usr/local/bin/nginx 2. 查找nginx配置文件 /usr/local/bin/nginx -t #检测配置是否正确,同时可以输出配置文件路径 输出: nginx: the configuration file /usr/lo 阅读全文
posted @ 2022-10-15 13:40 全玉 阅读(823) 评论(0) 推荐(0) 编辑
摘要: AbortController 从 v0.22.0 开始,Axios 支持以 fetch API 方式—— AbortController 取消请求: const controller = new AbortController(); axios.get('/foo/bar', { signal: 阅读全文
posted @ 2022-10-14 10:53 全玉 阅读(274) 评论(0) 推荐(0) 编辑
摘要: //iframe下载文件 function downloadFileByIfr(downLoadUrl) { // 移除旧的节点 const oldNode = document.querySelector("#g-exportOrder-iframe") if (oldNode) { docume 阅读全文
posted @ 2022-10-14 10:38 全玉 阅读(1592) 评论(0) 推荐(0) 编辑
摘要: 提交form方式打开新页面,可以跨域提交参数,而且打开新页面不会被浏览器拦截 // 打开新窗口 // postNew('http://localhost:8080',{name:'小明',age:12}) function postNew(url, params) { let form = docu 阅读全文
posted @ 2022-10-14 10:37 全玉 阅读(603) 评论(0) 推荐(0) 编辑
摘要: 去除上下文 1. location和proxy_pass都带/,可去除上下文 location ^~/api/ { proxy_pass http://api/; } 2. rewrite去除 http://api 的 api后面不带/, 通过rewrite移除api这个上下文 location ^ 阅读全文
posted @ 2022-10-13 15:01 全玉 阅读(9431) 评论(0) 推荐(0) 编辑
摘要: flex-basis 优先级高于 width,当flex-basis小于width时候,width相当于最大宽度。 flex-item 不是正常的block元素,而是flex-block元素,不会自动换行 flex-basis 受到 min-width 和 max-width 的限制 flex-it 阅读全文
posted @ 2022-08-19 09:48 全玉 阅读(268) 评论(0) 推荐(0) 编辑
摘要: vue的data或store中的数据,失去响应式,一个重要原因是,在data或state中未定义改字段。 阅读全文
posted @ 2022-08-11 10:29 全玉 阅读(816) 评论(0) 推荐(0) 编辑
摘要: 最近使用了nodejs的ORM waterline,就是sails.js框架中的那个ORM。 发现其有以下缺点: 1. 没有单独的文档,文档全在sails框架的文档中 2. 文档与ORM的API不同步 Standalone Waterline usage一节中的例子: var user = awai 阅读全文
posted @ 2022-07-08 14:25 全玉 阅读(30) 评论(0) 推荐(0) 编辑
摘要: # 统计单个文件 wc -l user.py # 统计当前目录所有文件行数 wc -l * # 统计当前目录所有.h文件行数 wc -l *.h # 统计所有py文件的行数 wc -l `find . -name "*.py"` # 统计.h和.cpp文件行数 wc -l `find . -name 阅读全文
posted @ 2022-06-23 10:43 全玉 阅读(777) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 87 下一页