尽管阅读了谷歌首页上几乎所有关于此的文章,但我似乎无法让它发挥作用:
[ { "comment" : "Resources to learn the basics of financial markets and economic concepts",
"id" : "1",
"name" : "Basics of Finance"
},
{ "comment" : "Pictures of colourful artwork to uplift the mood.",
"id" : "2",
"name" : "Colourful Artwork"
}
]
这是我想用 jQuery/javascript 解析并使用的 JSON 文件。这就是我目前正在尝试的:
$.ajax({
url: 'yourcurations.php',
data: '',
dataType: 'json',
success: function(data){
$.each($.parseJSON(data), function(i, item) {
alert(item.name);
});
}
});
其中“数据”是上面粘贴的 JSON,但它不起作用。任何人都可以帮忙吗?
谢谢