摘要: 首先给axios设置 responseType:'blob' 下载方式:一、使用a标签下载 axios.post(url,data,{responseType:'blob'}).then(res => { const blob = new Blob([res.data]);//处理文档流 const 阅读全文
posted @ 2020-10-30 10:33 爱代码三千 阅读(6799) 评论(0) 推荐(3) 编辑