我正在尝试在服务器A上托管的角度应用程序中使用PDFNet / PDFTron WebViewer,我想从服务器B加载PDF文件。 要加载该pdf文件身份验证,服务器B在我的浏览器上设置cookie。所以我在GET请求中传递 withCredentials:true 。
在使用WebViewer时,我将该URL传递给WebViewer的 initialDoc 参数,并且API返回401状态代码。
var viewerElement = $('#viewer');
var myWebViewer = new PDFTron.WebViewer({
type: "html5",
path: "path/to/lib",
streaming : "true",
initialDoc: "**Server B URL to load pdf file**",
documentType : "pdf",
config: "path/to/config"
}, viewerElement);
我无法理解在哪里可以传递请求配置,以便我将通过身份验证来获取该文档。 有什么方法可以使用凭据进行HTTP调用以获取PDF文件。 提前谢谢。
答案 0 :(得分:0)
您需要下载最新版本的WebViewer 2.2.2,其中包括设置withCredentials的功能。
下载后,您需要将以下代码添加到config.js
var oldLoadDocument = ReaderControl.prototype.loadDocument;
var loadDocument = function(doc, options) {
options.withCredentials = true;
return oldLoadDocument.call(this, doc, options);
}
ReaderControl.prototype.loadDocument = loadDocument;