在Cordova应用中使用托管网站上的插件

时间:2019-03-23 12:34:56

标签: cordova hosted-app

我创建了非常基本的Cordova项目。

通过单击Cordova项目的index.html中的按钮,在index.js中触发一个函数,可以将我的远程网站页面加载到Cordova WebView中。

<button id="btn1" onclick="abc()">Load</button><br/>


function abc(){
        var targetUrl = "https://xxxxxxx.com/xxx/xxx.html";
        window.location.replace(targetUrl);
       }

问题是我不能在我的网站页面上使用任何Cordova插件。

我已经浏览了以下波纹管链接

https://github.com/pwa-builder/PWABuilder-CLI

https://github.com/pwa-builder/PWABuilder-CLI/wiki/Using-Cordova-Plugins-in-Hosted-Web-Apps#quick-start

https://docs.microsoft.com/en-us/visualstudio/cross-platform/tools-for-cordova/tips-workarounds/run-web-app-in-cordova?view=toolsforcordova-2017

但是我仍然无法弄清楚必须将哪些插件脚本复制到网站服务器上才能使用我的网站页面上的插件。

我不想使用Hosted Web App插件。

0 个答案:

没有答案