これに関する Google の最初のページのほぼすべての記事を読んだにもかかわらず、これを機能させることができないようです。
[ { "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 ですが、機能していません。誰でも助けることができますか?
ありがとう