私の問題はJSON文字列の構造によるものと思われます。 JSONオブジェクト内にJSONオブジェクトがあるようです。[オブジェクトオブジェクト]を返すjQueryでJSONを解析できません
これは私のJSONの形式である:
[
{"subject":{"title":"java","id":"1","desc":"Basic java programming"},
{"subject":{"title":"objective c","id":"2","desc":"Introduction to objective c"}
}
は、これは私のjqueryのコードです:
var items = [];
$.getJSON('theurl', function(data) {
$.each(data, function(key, subject) {
alert(subject); //returning me "[object Object]"
$('#tempresult').append('<p>'+ subject +'</p>'); //returning me "[object Object]"
});
});
を取得する対象のプロパティを指定する必要があります。代わりに何をしたいですか? – gilly3