我正在尝试在Ionic2应用程序中使用PDF.js.
到目前为止我的代码
PDFJS.getDocument(this.url).then( (doc) => {
console.log(doc.numPages)
doc.getPage(2).then((pdfPage) => {
var SCALE = .1;
var pdfPageView = new PDFJS.PDFPageView({
container: document.getElementById("container"),
id: 2,
defaultViewport: pdfPage.getViewport(SCALE),
// We can enable text/annotations layers, if needed
textLayerFactory: new PDFJS.DefaultTextLayerFactory(),
annotationLayerFactory: new PDFJS.DefaultAnnotationLayerFactory()
});
pdfPageView.setPdfPage(pdfPage);
pdfPageView.draw();
})
});
我的问题是div / canvas没有响应。
请建议如何做到这一点。
由于