0

我正在尝试使用 Jquery 从远程 URL 解析 json 数据。我的数据格式如下:

[
{
    "UserId": "5",
    "Name": "Syed",
    "Lat": "23.193458922305805",
    "Long": "77.43331186580654",
    "EmailId": "syedrizwan@ats.in",
    "LocationUpdatedAt": ""
},
{
    "UserId": "98",
    "Name": "Michael Catholic",
    "Lat": "23.221318",
    "Long": "77.42625",
    "EmailId": "michaelcatholic@gmail.com",
    "LocationUpdatedAt": ""
}
]

我检查了 json lint 中的数据,它说它是正确的数据格式。当我尝试在我的 HTML 页面上运行它时,它返回一个空白页面。我的 HTML 代码如下:

<html>
<head>
<title>Jquery Json</title>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
    $.getJSON('http://localhost/fbJson/json.php', function(results){
        document.write(results.Name);
    });
});
</script>
</head>
<body>

</body>
</html>

我正在尝试从 json 字符串中检索名称

4

3 回答 3

0

有一个对象数组,您可以使用索引直接访问它们

   $.getJSON('http://localhost/fbJson/json.php', function(results){
        document.write(results[0].Name);
    });

如果您希望遍历数组,您可以使用$.each并将其传递给results

   $.each(results, function(key, val) {
       document.write(val.Name);
   });
于 2013-07-29T04:26:42.010 回答
0

results是一个项目数组,所以你必须考虑你想要哪个项目。

通常,您会以类似于以下方式循环遍历数组:

$.getJSON('http://localhost/fbJson/json.php', function(results){
    for(var i = 0; i < results.length; i++) {
        console.log(results[i].Name);
    }
});
于 2013-07-29T04:27:46.467 回答
0

你的 json 格式是正确的。使用此代码访问第一行数组中的名称:

document.write(results[0].Name);
于 2013-07-29T04:30:24.873 回答