我创建了非常基本的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
但是我仍然无法弄清楚必须将哪些插件脚本复制到网站服务器上才能使用我的网站页面上的插件。
我不想使用Hosted Web App插件。