我有一个从外部域接收数据的科尔多瓦(phonegap)黑莓应用程序。现在,问题是它不能在我的 Blackberry 设备(有 OS 7)上运行,但在 - 1. Android 应用程序(任何版本) 2. Windows phone 8 应用程序 3. Blackberry 设备的默认网络浏览器中运行良好。
我进行了研究并了解到 config.xml 文件必须在标签中包含域名进行编辑<access>
。所以我做了以下 -
<access subdomains="true" uri="*" />
<access subdomains="true" uri="http://192.168.0.103:81/">
<feature id="blackberry.app" version="1.0.0.0" required="true"/>
<feature id="blackberry.invoke" version="1.0.0.0" required="true"/>
<feature id="phonegap" required="true"/>
<feature id="cordova" required="true"/>
</access>
我不确定为什么我的设备无法通过该域进行访问。我还在我的 BB 设备上禁用了防火墙。
这是我从中接收数据的代码-
$(document).ready(function(e) {
$('#restaurantsList').click(function(){
var myList = '';
var url = "http://xxx.xx.xxx.xx:81/xxxx/retrieve_all.php";
$.getJSON(url, function(json) {
$.each(json, function(i, v) {
myList += '<li id='+v.fb_sno+' onClick="getRestauDet('+ v.fb_sno +')"><img src="'+v.fb_img+'"/><h2>' + v.fb_name + '</h2><h3>'+ v.fb_type + '</h3><h4>'+ v.fb_location + '</h4></a></li>';
});
$("#descriptionTitle").html("Food & Beverages");
$("#listOfItems").html(myList);
$('[id=listOfItems]').listview('refresh');
});
});
});