gpt4 book ai didi

javascript - Internet Explorer - DOM7011 : The code on this page disabled back and forward caching. 尝试使用 Javascript 下载二进制文件后出现警告

转载 作者:行者123 更新时间:2023-11-29 23:26:22 24 4
gpt4 key购买 nike

因此,我正在尝试使用 javascript 下载二进制文件。它在 Chrome 和 Opera 上运行良好,但在 IE 上不起作用。

尝试下载文件后出现警告“DOM7011:此页面上的代码已禁用来回缓存。”出现在 IE 开发者工具上。

有人遇到过这个问题吗?

$.DownloadBase64File = function (file, data) {
if (file && data) {
var link = document.createElement('a');
link.setAttribute('href', "data:application/octet-stream;charset=utf-16le;base64," + encodeURIComponent(data));
link.setAttribute('download', file);
link.click();
};
};

if (data.status === '0') {
$.DownloadBase64File(
'MyPDF_File.pdf',
data.ReportBinary
);
}

感谢您的帮助:)

最佳答案

我已经设法解决了自己的问题,现在我将在此处发布解决方案以帮助遇到同样问题的其他人。

我无法在 IE 上下载文件。在 Chrome、Firefox 和 Opera 等其他浏览器上运行良好。我进行了很多搜索,甚至在 StackOverflow 上发布了我的问题,尽管没有人能帮助我找到答案。

我发现这个脚本对我有帮助。

代码来自dandavis,可以在这里找到:
http://danml.com/download.html
https://github.com/rndme/download

希望对您有用!

关于javascript - Internet Explorer - DOM7011 : The code on this page disabled back and forward caching. 尝试使用 Javascript 下载二进制文件后出现警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49114522/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com