上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 87 下一页
摘要: //fetch下载文件流 function download(url){ fetch(url).then(res => { return res.blob(); //return res.arrayBuffer(); }).then(res => { let type = "video/*" // 阅读全文
posted @ 2023-02-12 19:32 全玉 阅读(655) 评论(0) 推荐(1) 编辑
摘要: 用FormData在提交数据时候,会自动设置 Content-Type。 无论提交普通字段,还是上传文件,都无需自行设置 Content-Type。 尤其在上传文件时候,自行设置 Content-Type: multipart/form-data,反而会导致上传失败。 因为浏览器自行添加的 Cont 阅读全文
posted @ 2023-02-12 16:25 全玉 阅读(1111) 评论(0) 推荐(0) 编辑
摘要: 在新恢复到系统 10.13.6上安装homebrew,过程如下: 1. 用homebrew官网命令安装,报错 curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to raw.githubusercontent.com:4 阅读全文
posted @ 2023-01-23 18:20 全玉 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 由于zsh加了oh-my-zsh之后,启动变得非常慢,超过5s,恢复到新系统,不再使用zsh,直接使用bash。 bash到黑白界面,看起来,不太友好,遂添加一些功能。 1. 对不同文件配色 目前只能区分文件和目录等,不能对不同后缀文件分别着色 2. 添加git分支显示 参考此文 Mac 终端 ba 阅读全文
posted @ 2023-01-23 18:13 全玉 阅读(543) 评论(0) 推荐(0) 编辑
摘要: 1. 由于chrome和docker,以及某些安装包,提示系统版本过旧,将mac系统从10.12.6升级到10.15.7,结果,软件各种卡顿,经过一些配置修改和一段时间的适应,一部分软件卡顿减少,但是vscode经常卡顿,这个无法忍受,必须重装 2. mac系统升级后,无法用Time machine 阅读全文
posted @ 2023-01-23 16:32 全玉 阅读(1065) 评论(0) 推荐(0) 编辑
摘要: 在uniapp中使用mescroll,如果循环的列表项没有添加key,当列表项条目较少时候,少于一屏,此时,可能会出现某个列表项样式丢失。 阅读全文
posted @ 2023-01-17 15:47 全玉 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 主要是通过 AbortController 来终止前一个请求。 例如: useEffect(() => { // 创建 controller const controller = new AbortController(); // 将 controller 作为signal传递给 fetch fet 阅读全文
posted @ 2022-12-23 19:10 全玉 阅读(97) 评论(0) 推荐(0) 编辑
摘要: uniapp的循环列表中,偶发会出现列表中某一项的样式丢失。 语法上完全没问题,问题出在 没有写循环项的key。但是并不是每次都出现,在某些列表中,就可以正常显示。 阅读全文
posted @ 2022-11-10 12:12 全玉 阅读(533) 评论(0) 推荐(0) 编辑
摘要: Nginx rewrite 的last、break、redirect、permanent有四种模式: last和break 都会跳转的rewrite的地址,区别是: last跳转后,会重新发起请求再匹配一次location,而break则只进行跳转,不再重新请求。 当rewrite后的地址是一个直接 阅读全文
posted @ 2022-10-15 14:52 全玉 阅读(3381) 评论(0) 推荐(0) 编辑
摘要: 1. 默认server增加location # 第一个站点配置 location / { root /data/apps/a; index index.html index.htm; } # 部署的后端访问地址和端口号 location /a-api/ { proxy_pass http://127 阅读全文
posted @ 2022-10-15 14:20 全玉 阅读(2636) 评论(0) 推荐(1) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 87 下一页