我正在嘗試集成radaeepdf科爾多瓦插件。我嘗試了默認的cordova設置。radaeepdf科爾多瓦插件與Ionic2集成
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)`
你可以分享你的實現的代碼嗎? – Sampath
@Sampath,請參閱編輯。該插件不接受SD卡路徑。 – raju