我正在尝试集成radaeepdf cordova插件。我试过默认的cordova设置。
Pdf从www /文件夹打开。但它不是从SD卡/下载开放。它显示无效路径。
是否有人成功将此插件集成到android中并从SD卡读取文件。
请尽可能帮助。
EDIT-1 ::
`ngAfterViewInit(){
setTimeout(() => {
console.log(this._file.externalRootDirectory);
RadaeePDFPlugin.open(
{
url: "file:///storage/emulated/0/"+"Download/test.PDF",
password: "", //password if needed
readOnlyMode: false,
gotoPage: 2
},
function(message) {
alert("Success: " + message);
},
function(err){
alert("Failure: " + err);
}
);
},5000)`
答案 0 :(得分:0)
看来你的路径是错误的。请按照下面的说明进行尝试。
url: "file:///mnt/sdcard/Download/Test.pdf", //in case of pdf is in the device file system
在doc here上也可以看到。