PhoneGap:安装并使用插件

时间:2017-05-29 05:44:27

标签: typescript phonegap-plugins phonegap

这是我用来安装fileOpener2的命令:

phonegap plugin add cordova-plugin-file-opener2

执行命令后,它会将其添加,并显示在我的config.xml文件中。并添加到plugins目录中。然而它永远不会奏效。

以下是我尝试过的。所有3个都无法工作:

try{
    (<any> window).plugins.fileOpener.open(myFileUrl);                        
} catch(e) {
    alert(e);
}
try{
    (<any> cordova).plugins.fileOpener2.open(myFileUrl, 'application/pdf');
} catch(e) {
    alert(e);
}
try{
    (<any> window).plugins.fileOpener2.open(myFileUrl, 'application/pdf');
} catch(e) {
    alert(e);
}

所有3的错误:

TypeError:无法读取未定义

的属性'open'

一些额外的细节。这是一个有角度的应用程序。这不是立即调用的。

0 个答案:

没有答案