摘要: //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) 编辑