我正在测试获取一些json和json代码实际上在我的Android上显示但是当我在我的iPhone上尝试它时它将无法工作。
是否需要为IOS设置额外的内容?
以下是代码:
<!DOCTYPE html>
<html>
<head>
<title>JSON Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" />
<script src="js/jquery-1.7.1.min.js"></script>
<script>
$('#page1').live("pageinit", function () {
$.getJSON("http://mysite.com/api/get_cats", function (data) {
var output = '';
$.each(data.cats, function (index, value) {
output += '<li>' + value.title + '</li>';
});
$('#listview').append(output).listview('refresh');
});
});
</script>
<script src="js/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div id="page1" data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
<ul id="listview"></ul>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>
如果我添加警报:alert(data.cats);我在iphone“
中得到”index.html [object:Object]“任何想法?
答案 0 :(得分:4)
您是否已将该域列入白名单?
它在config.plist中...而在android上它在cordova.xml中
请参阅http://docs.phonegap.com/en/2.0.0/guide_whitelist_index.md.html#Domain%20Whitelist%20Guide
编辑: 您可以从Respons jqxhr对象中提醒事物以了解更多信息。作为响应函数添加另外两个参数
function(data, textStatus, jqXHR){...}