1

这是我的 jsonp 提要: http: //www.letheatredelorient.fr/saison/data.jsonp(JSONLint 有效)

这是我的 getJSON 脚本:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function () {
$.getJSON("http://www.letheatredelorient.fr/saison/data.jsonp?callback=", function (data)             {
$.each(data.Items, function (i, node) {
var title = node.titre;
$("#myTitle").html(title);
});
});
});
</script>
</head>
<body>
<div id="myTitle"></div>
</body>
</html>

这真的很简单。但是,它获取提要,但不解析它。有任何想法吗?

4

1 回答 1

2

试试这个:

var title = node.node.titre;

在您的代码中,节点是 Item 对象,节点在其中,这是不是更清楚一点?

$.getJSON("http://www.letheatredelorient.fr/saison/data.jsonp?callback=", function (data) {
    $.each(data.Items, function (i, item) {
        //For each item in Items
        var title = item.node.titre;
        $("#myTitle").html(title);
    });
});

这是您的 json,我添加了评论,您正在循环浏览包含节点的项目:

{
    "Items": [
        -item{
            "node": {
                "titre": "La Faculté",
                "image": "http://www.letheatredelorient.fr/sites/default/files/imagecache/130/saison/spectacles/faculte/photos/faculte-web2calainfonteray.jpg"
            }
        },
        -item{
            "node": {
                "titre": "Nouveau Roman",
                "image": "http://www.letheatredelorient.fr/sites/default/files/imagecache/130/saison/spectacles/nouveau-roman/photos/1210-nouveauroman-04cjeanlouisfernandez.jpg"
            }
        }
    ]
}
于 2012-10-11T16:28:04.210 回答