ie采用blob形式下载文件没有后缀?
function getFileDownLoad(fileData,fileName){
let blob = new Blob([fileData],{type:"application/pdf"});
// for ie 10+
if (window.navigator.msSaveBlob) {
window.navigator.msSaveOrOpenBlob(blob,fileName);
return;
}
//google
let elink = document.createElement('a');
elink.href = URL.createObjectURL(blob);
elink.download = fileName;
document.body.appendChild(elink);
elink.click()
URL.revokeObjectURL(elink.href);
document.body.removeChild(elink);
}
项目需要兼容ie,下载文件采用blob的形式兼容;文件可以下载但是ie没有文件后缀名,是我的写法有问题吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
自己解决了,fileName+'.pdf' 拼起来能解决需求; 有没有别的解决方法呢? 还是ie就是这样的??
fileName 直接从回调头里获取不就行了...
let fileName = res.headers['content-disposition'].split(';')[1].split('=')[1]