后台返回的乱码流
解决办法:
请求方式用的是axios,主要加关键的 {responseType: 'blob'}
axios封装
1
2
3
4
5
6
7
8
9
|
export function postDownload(url, data) {
return new Promise((resolve, reject) => {
instance.post(url,data,{responseType: 'blob' }).then(response => {
resolve(response);
}, err => {
reject(err)
})
})
}
|
下载插件 npm install js-file-download -S
运用:
下载excel时,后台设置了excel标题,要去请求头去取,传输过程中文会有乱码的情况,需要编码下。
let fileDownload = require("js-file-download");
fileDownload(res.data,decodeURIComponent(res.headers['content-disposition'].split("=")[1]));
补充知识:vue下载后台接口返回的二进制流文件转为Excel文件
我就废话不多说了,大家还是直接看代码吧~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
this .$http({
method: "post" ,
responseType: "arraybuffer" ,
url: '导出接口地址' ,
data:{}
}).then((res)=>{
if (res.status === 200 && res.data) {
var disposition = res.headers[ 'content-disposition' ];
var fileName = decodeURI( disposition.split( "filename=" )[1].split( ";filename*=" )[0])
let blob = new Blob([res.data], { type: 'application/.xls' }); //.xls是我和后台约定好的文件格式
let link = document.createElement( 'a' );
link.href = window.URL.createObjectURL(blob);
link.download = fileName;
link.click();
link.remove();
}
},(err)=>{ var enc = new TextDecoder( 'utf-8' )
var res = JSON.parse(enc.decode( new Uint8Array(err.data))) //转化成json对象
});
|
此时注意 responseType:"arraybuffer", 在vue框架当中,数据请求是借助axios的,为此,在发送请求的时候,需要修改responseType,改为arraybuffer,axios默认情况下responseType为json,若是不修改,很可能下载时候会是乱码,或者为null。
以上这篇解决vue下载后台传过来的乱码流的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/adbg/p/10579408.html