我对每个使用 PDFObject 库的人有疑问。( http://pdfobject.com/ ) (我在前端使用 angularJS)
//This is the html code:
<div id="boxPdf"></div>
//Here the code in the controller
var pdfUrl = '/myUrl/myRestService/'+idDocument;
var myPDF = new PDFObject({
url: pdfUrl,
pdfOpenParams: {
width: "100%",
height: "1500"
},
id: 'myIdObject'
});
myPDF.embed('boxPdf');
该代码有效,但令人讨厌的是,如果我从后端发送一个空的 pdf,这个库无论如何都会显示灰色框。我想抓住这个例外,例如不显示灰色框。我如何查看 myPDF 并了解它是满的还是空的?感谢您的关注,对不起我的英语不好,伊戈尔