我的 Hybrid Android 设备找不到 PDFTron 的路径有问题。Hybrid 应用程序内置于 Mendix。
下面是我的示例代码。
WebViewer({
path: 'PDFTron/lib',
documentType: 'pdf',
//initialDoc: 'https://pdftron.s3.amazonaws.com/downloads/pl/demo-annotated.pdf',
fullAPI: true,
enableFilePicker: true }, document.getElementById('viewer')).then(async function(instance) { /**** Some code here ***/ });});'
上面的路径非常适合网络版本。在 Android 中,我收到此错误。
看起来混合版本确实采用“file:///”的路径
谁能指导我如何为混合应用程序提供正确的路径,或者 PDFTron 是否有其他解决方案。