pdf.js在任何浏览器中都不再起作用,甚至不是示例

时间:2018-03-05 10:36:06

标签: pdfjs

今天突然PDFJS不再起作用了。很奇怪我找不到很多其他用户遇到这个问题,除了一个:https://github.com/mozilla/pdf.js/issues/9526

你在他们自己的例子中看到了相同的错误吗? http://mozilla.github.io/pdf.js/examples/index.html#interactive-examples

问候,彼得

2 个答案:

答案 0 :(得分:0)

此次更新后出现问题:https://github.com/mozilla/pdf.js/commit/b8606abbc1448ffd26ad553b253e2fb72d7f2cb7

它不向后兼容,甚至不是例子。

解决方案是用pdfjsDistBuildPdf替换PDFJS。 所以:

pdfjsDistBuildPdf.workerSrc = '//mozilla.github.io/pdf.js/build/pdf.worker.js';

pdfjsDistBuildPdf.getDocument({data: pdfData});

答案 1 :(得分:0)

我遇到了同样的问题。我通过在脚本顶部添加以下行来解决问题:

var PDFJS = pdfjsLib;

希望这有帮助