问题已解决。 TIL我需要在我的html中添加一个脚本链接到Cordova
我知道事件正在触发,因为我的服务器在单击按钮时向链接显示请求。它与我的电脑和平板电脑上的镀铬连接很好,但原生应用程序按钮不会为我打开系统浏览器。
链接连接到.apk下载,当我按下按钮时,服务器正在按照要求注册。所以事件处理不是问题。我也试过'_blank'而不是系统,但仍然没有欢乐
非常感谢任何帮助
修改:还根据here
尝试了navigator.app.loadUrl
编辑编辑:嗯,我尝试在函数的第一行插入一个'thert(“test”);'语句而且没有触发......但目标链接的服务器正在注册请求。
相关的代码补丁在这里:
Server.getUpdateInfo(getDevice()?getDevice():"Android", function (data) {
if(data.IsUpdate){
if(getDevice()){
$("#btnInstall").on("click", function(){
window.open($(this).data("url"),'_system');
});
}
else {
$("#btnInstall").closest(".ui-btn").hide();
}
}
});
这是我的config.xml:
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
xmlns:android = "http://schemas.android.com/apk/res/android"
id = "com.blahblahblah"
version = "1.0.4">
<name>Server App</name>
<description>
jQuery Mobile interface for Server Admin
</description>
<author>
Firma GmbH
</author>
<access origin="*"/>
<feature name="http://api.phonegap.com/1.0/device" />
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/notification"/>
<preference name="phonegap-version" value="3.1.0" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<preference name="auto-hide-splash-screen" value="true" />
<plugin name="Notification" value="org.apache.cordova.Notification"/>
<plugin name="NetworkStatus" value="org.apache.cordova.NetworkManager" />
<plugin name="NetworkStatus" value="CDVConnection" />
</widget>
答案 0 :(得分:0)
确保您的html文件中有一个指向cordova脚本的链接。无需自己加载文件,因为phonegapp将构建它。