4

我正在处理我的第一个(EVER!)JSON 项目,我想知道如何从 JSON 对象获取数据。我已将其导入,我需要做的是从值字段中获取输入并将其与用户输入的输入进行比较。不幸的是,我什至不知道如何从 JSON 对象中获取数据。它似乎加载成功,但我无法引用它。这是我正在加载的 JSON 示例:

{
    "films": [{
        "label": "34",
        "value": "34",
        "currently_streaming": "1",
        "full_streaming_url": "http://www.url.com",
        "url": "http://www.url.com"},
    {
        "label": "A Different Color",
        "value": "A Different Color",
        "currently_streaming": "1",
        "full_streaming_url": "http://www.url.php",
        "url": "http://www.url.com"}]
}​

这是加载它的代码。它返回成功,但我无法从 JSON 对象中获取任何数据:

 $(document).ready(function(){
    $.ajax({
        dataType: 'json',
        beforeSend : function() {
           console.log('Before Ajax Request Starts !!');
        },
        success: function(data) {
            console.log(data);
            alert("Edddddddd");
            $.each(json.films, function(i, object) {
            $.each(object, function(property, value) {
            alert(property + "=" + value);
    });
});
        },
        error : function(jqXHR, textStatus, errorThrown) {
             alert("Error occurred: " + errorThrown);
        },
         beforeSend : function() {
           console.log('Ajax Request Complete  !!');
        },
        url: 'test.php'
    });  
});

我显然不知道自己在做什么,因此非常感谢任何帮助!

4

1 回答 1

5

更改自:

$.each(json.films, function(i, object)

至:

$.each(data.films, function(i, object)
于 2012-09-21T17:44:20.360 回答