我真的需要帮助来阅读这个 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);
}
});