0

我正在测试获取一些 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]”

有什么想法吗?

4

1 回答 1

4

您是否将该域列入白名单?

它在 config.plist 中......而在 android 上它在 cordova.xml

请参阅http://docs.phonegap.com/en/2.0.0/guide_whitelist_index.md.html#Domain%20Whitelist%20Guide

编辑:您也可以从响应 jqxhr 对象中提醒事情以了解更多信息。作为响应函数添加另外两个参数

    function(data, textStatus, jqXHR){...}
于 2012-08-20T09:00:30.663 回答