pdf.js in IE 9. Warning: Unhandled rejection: Error: Access is denied

pdf.js in IE 9. Warning: Unhandled rejection: Error: Access is denied

我在尝试查看以下内容时收到此错误消息:http://www.publishers.org.uk/_resources/assets/attachment/full/0/2091.pdf 在 IE9 中,我加载了 pdf.compatibility.js,所以我不认为它与类型数组有关。 有没有人遇到过这个before/understand为什么会这样?

编辑: 我正在使用以下版本

PDFJS.version = '1.0.1040';

PDFJS.build = '997096f';

谢谢

您不能在 Internet Explorer 中从另一个域(跨源)加载 PDF 文件,因为 PDF 是使用 XMLHttpRequest 获取的,而 Internet Explorer 9 不支持 CORS(跨域资源共享)。 CORS 是在 Internet Explorer 10 中引入的。

您可以通过从同一来源加载 PDF 来解决此问题。首先使用服务器上的后端代理将文件下载到您自己的服务器,然后从那里加载 PDF。