我正在开发适用于iOS的Phonegap应用。我是两个人的新手!
无论如何,它看起来不错,但我无法运行以下JSON调用。它没有到达服务器 - 日志中没有任何内容。
我收到'in'警报但没有'out'警告。
代码在标准网页上运行良好。
我已经包含了
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'></script>
我已经在强大的Google上找到了Cordova.plist的ExternalHosts!
我错过了什么?
感谢。
function GetData(){
alert('in');
$.getJSON('http://dev.myurl.com/brief/getdata.php', function(data)
{
$.each(data, function(key, val) {
alert(val.itemValue);
}) // each
}// function
);//getjson
alert('out');
}
答案 0 :(得分:0)
你已经尝试过这个:
function GetData(){
alert('in');
$.get('http://dev.myurl.com/brief/getdata.php', function(data){
$.each(data, function(key, val) {
alert(val.itemValue);
})
}), 'json';
alert('out');
}