首页 > 移动平台 > 详细

vue,用axios或原生xhr下载文件流,在ie(11)中下载xlsx文件乱码或文件损坏。求解?

时间:2020-09-18 23:08:29      阅读:74      评论:0      收藏:0      [点我收藏+]

技术分享图片

技术分享图片

技术分享图片

技术分享图片

问题描述

这个问题只在ie中存在,这个要怎么搞

相关代码

// 这是axios
this.instance.get(file/download/${arg.id},{

                responseType: "arraybuffer"
            })
                .then(({data}) => {

                    let blob = new Blob([data], {type: ‘application/vnd.ms-excel‘});
                    if (window.navigator.msSaveOrOpenBlob) {
                        console.log(‘IE浏览器‘);
                        window.navigator.msSaveOrOpenBlob(blob, arg.name);
                    } else {
                        let objectUrl = URL.createObjectURL(blob); 
                        let link = document.createElement(‘a‘);
                        link.style.display = ‘none‘;
                        link.href = objectUrl;
                        link.setAttribute(‘download‘, arg.name);
                        document.body.appendChild(link);
                        link.click();
                        console.log(‘非IE浏览器‘);
                    }
                })
                .catch(error => {
                    console.log(error);
                })
                

// 我看网上有说用xhr写试一下,我就用xhr试了一下,结果一样
let xhr = new XMLHttpRequest();

            xhr.open("get", `file/download/${arg.id}`, true);
            xhr.responseType="blob";
            xhr.onload = function () {
                if (this.status === 200) {
                    let blob = new Blob([this.response], {type: ‘application/vnd.ms-excel‘});
                    if (window.navigator.msSaveOrOpenBlob) {
                        console.log(‘IE浏览器‘);
                        window.navigator.msSaveOrOpenBlob(blob, arg.name);
                    } else {
                        let objectUrl = URL.createObjectURL(blob); 
                        let link = document.createElement(‘a‘);
                        link.style.display = ‘none‘;
                        link.href = objectUrl;
                        link.setAttribute(‘download‘, arg.name);
                        document.body.appendChild(link);
                        link.click();
                        console.log(‘非IE浏览器‘);
                    }
                }
            }
            xhr.send();

// 这是chrome请求的
技术分享图片

// 这是用IE请求的
技术分享图片

目前发现的区别是chrome返回的正文有东西,而IE返回的不管是响应或请求都没有正文。
技术分享图片

技术分享图片

vue,用axios或原生xhr下载文件流,在ie(11)中下载xlsx文件乱码或文件损坏。求解?

原文:https://www.cnblogs.com/wl-blog/p/13693471.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!