vue 文件流下载iegoogle兼容
Posted 一统
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 文件流下载iegoogle兼容相关的知识,希望对你有一定的参考价值。
// //从response的headers中获取filename, 后端response.setHeader("Content-disposition", "attachment; filename=xxxx.docx") 设置的文件名;
var patt = new RegExp("filename=([^;]+\\\\.[^\\\\.;]+);*");
var contentDisposition = decodeURI(res.headers["content-disposition"]);
var result = patt.exec(contentDisposition);
var fileName = result[1];
fileName = fileName.replace(/\\"/g, "");
// IE兼容方法
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveOrOpenBlob(res.data, fileName);
return;
}
const aLink = document.createElement("a");
var blob = new Blob([res.data], { type: mimeType });
aLink.href = URL.createObjectURL(blob);
aLink.setAttribute("download", fileName); // 设置下载文件名称
document.body.appendChild(aLink);
aLink.click();
以上是关于vue 文件流下载iegoogle兼容的主要内容,如果未能解决你的问题,请参考以下文章