摘要:
//fetch下载文件流 function download(url){ fetch(url).then(res => { return res.blob(); //return res.arrayBuffer(); }).then(res => { let type = "video/*" // 阅读全文
摘要:
用FormData在提交数据时候,会自动设置 Content-Type。 无论提交普通字段,还是上传文件,都无需自行设置 Content-Type。 尤其在上传文件时候,自行设置 Content-Type: multipart/form-data,反而会导致上传失败。 因为浏览器自行添加的 Cont 阅读全文