vue + axios 通过Blob 转换excel文件流 下载乱码问题
首先看下我们接收到的请求: 特别注意:responseType: 'blob'axios({method: 'GET',url: '/api',params: params,responseType: 'blob'}).then(res=>{let blob = ne...
·
首先看下我们接收到的请求:
特别注意:responseType: 'blob'
axios({
method: 'GET',
url: '/api',
params: params,
responseType: 'blob'
}).then(res=>{
let blob = new Blob([res.data], {type: "application/vnd.ms-excel"});
let url = window.URL.createObjectURL(blob);
window.location.href = url;
}).catch(err=>{
console.log(err)
})
参考:vue axios 请求二进制流excel文件,response乱码
更多推荐
已为社区贡献9条内容
所有评论(0)