亲宝软件园·资讯

展开

vue axios接收流文件

weixin_43869439 人气:0

在工作中遇到使用axios接收流文件,遇到了一些问题,整理如下:

在调用接口成功后如图所示:

现在需要调试下axios.js文件统一拦截

// 导出
    const headers = response.headers
    //console.log(headers['content-type'])  将打印的值,也将后台返回的相应头设置成相同的,我的就是'application/octet-stream;charset=UTF-8',然后返回response
    if (headers['content-type'] == 'application/octet-stream;charset=UTF-8') {
        return response;
    }

现在需要注意headers[‘content-type’] 不一定是 ‘application/octet-stream;charset=UTF-8’
在接口调用时需要设置axios的相应类型,responseType: “blob”

this.axios({
   	method: "get",
    url: "/dafw/cljsdc",
    params: data,
    responseType: "blob"
  })
    .then(res => {
    let blob = new Blob([_res]);
    let downloadElement = document.createElement("a");
    let href = window.URL.createObjectURL(blob); //创建下载的链接
    downloadElement.href = href;
    downloadElement.download = "xxx.xls"; //下载后文件名
    document.body.appendChild(downloadElement);
    downloadElement.click(); //点击下载
    document.body.removeChild(downloadElement); //下载完成移除元素
    window.URL.revokeObjectURL(href); //释放掉blob对象
	...

之后就会下载成功…

加载全部内容

相关教程
猜你喜欢
用户评论