我正在为 iOS 开发一个 Phonegap 应用程序。我都是新手!
无论如何,它看起来不错,但我无法运行以下 JSON 调用。它没有到达服务器 - 日志中没有任何内容。
我收到“进”警报,但没有收到“出”警报。
该代码在标准网页上运行良好。
我已经包括
<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');
}