从ajax响应下载pdf文件

从ajax响应下载pdf文件,第1张

从ajax响应下载pdf文件

关于如何针对所有现代浏览器进行优化的想法?

是的,我可以为您提供在Windows 10上经过IE11,Firefox 47和Chrome 52测试的解决方案。目前,Microsoft
Edge尚无任何功能。

开始时,您需要区分是使用IE还是其他两种浏览器。这是因为在IE11上您可以使用:

window.navigator.msSaveBlob(req.response, "PdfName-" + new Date().getTime() + ".pdf");

对于其他两个浏览器,您的代码可在Chrome上运行,但不能在Firefox上运行,因为您没有将元素附加到文档正文中。

因此,更正后的代码是:

var req = new XMLHttpRequest();req.open("POST", "/servicepath/Method?ids=" + ids, true);req.responseType = "blob";req.onreadystatechange = function () {  if (req.readyState === 4 && req.status === 200) {    // test for IE    if (typeof window.navigator.msSaveBlob === 'function') {      window.navigator.msSaveBlob(req.response, "PdfName-" + new Date().getTime() + ".pdf");    } else {      var blob = req.response;      var link = document.createElement('a');      link.href = window.URL.createObjectURL(blob);      link.download = "PdfName-" + new Date().getTime() + ".pdf";      // append the link to the document body      document.body.appendChild(link);      link.click();    }  }};req.send();


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4953040.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存