在IE9中使用JS下载PDF作为Blob

时间:2015-01-28 15:28:05

标签: javascript pdf internet-explorer-9 blob

我有一个blob并想下载它。它适用于Chrome,Firefox,IE10及更高版本。问题是IE9。

                    var isIE = /*@cc_on!@*/false || !!document.documentMode;  
                    var blob = new Blob([data], {type: "application/pdf"});
                    if (isIE) {
                        window.navigator.msSaveOrOpenBlob(blob, "Download.pdf");
                    } else {
                        var link = document.createElement('a');
                        link.href = window.URL.createObjectURL(blob);
                        link.download = "Download.pdf";
                        link.id = "TEST";
                        $('body').append(link);
                        document.getElementById("TEST").click();
                    }

问题出在哪里? IE在URL中具有2.083作为字符的最大限制。也许这很关键。我有什么替代品?我必须支持IE9 ...谢谢。

1 个答案:

答案 0 :(得分:0)

正如您可以阅读here,IE 10版支持Blob构造函数。您可能希望使用PDF.js