我正在为ios开发App框架+ phonegap构建应用程序。当一个id为#item1的面板加载时,我不想获取localy数据并将其写入页面。我用这个:
$('#item1').on("loadpanel", function(){
$.ajax({
type:"GET",
url:"data/mydata.json",
contentType:"application/json",
success:function(data){
console.log(data.cat);
alert(data.cat);
$.ui.setTitle(data.cat);
$.each(data.entries, function( index, value ) {
$('ul.list').append('<li data-filter="' + value.title + '"><a href="#details/'+ index +'/1">' + value.title + '</a></li>')
});
$(".list").filterList();
},
error: function (xhr, ajaxOptions, thrownError) {
alert("errorstatus: " + xhr.status + " ajaxoptions: " + ajaxOptions + " throwError: " + thrownError);
}
});
});
这在浏览器中运行得很好,但是当我使用phonegap build为ios打包应用程序时,没有任何内容被附加到页面,并且alert语句显示为undefined。这可能与config.xml中的phonegap访问标签有关,所以我会将它们粘贴在这里:
<access origin="*" />
<access origin="*"/>
所有人都非常感谢!
答案 0 :(得分:0)