0

我真的需要帮助来阅读这个 URL 上的 JSON 数据:

http://www.cloudspokes.com/members/ferbie12/past_challenges.json

我正在尝试--disable-web-security在 google chrome 上使用来解决跨域问题。这是我编写的用于读取 JSON 上的简单值的代码。

$.getJSON("www.cloudspokes.com/members/ferbie12/past_challenges.json",function(data) {
    $.each(data, function(){
        var test = data.attributes.type;
        $('p#success').append(test);
    });
});

它不会在浏览器上显示任何内容。非常感谢您的帮助。

更新:我也尝试使用这些代码。仍然没有结果。

$.ajax({
    type: "POST",
    url: "www.cloudspokes.com/members/ferbie12/past_challenges.json",
    contentType: "application/json; charset=utf-8",
    dataType: "json",

    success: function(data) {
        $.each(data, function(){
            var test = data.attributes.type;
            $('p#success').append(test);
        });
    itemAddCallback(data);
    },
    error: function (xhr, textStatus, errorThrown) {
    $("#success").html(xhr.responseText);   
    }
});
4

1 回答 1

2

您缺少 URI 的协议部分

修复它后,使用以下内容迭代项目:

$.each(data, function(index,item){
    var test = item.attributes.type;
    $('p#success').append(test);
});
于 2012-08-04T20:05:11.870 回答