ここに私のjsonオブジェクトがあります:
var home = "[{\"id\":\"1\",\"img\":\"assets\\\/1.jpg\",\"headline\":\"This is the headline in the pedu.\",\"text\":\"To the ipedu\"},{\"id\":\"2\",\"img\":\"assets\\\/2.jpg\",\"headline\":\"This is the headline in the pedulence.\",\"text\":\"To the pendula\"}]";
次のようにオブジェクトをループしようとすると:
$.each(home, function() {
console.log(this);
});
文字列全体ではなく、各文字をログに記録しました。
例: 文字列 {0: "["} localhost:317 文字列 {0: "{"} localhost:317 文字列 {0: """} localhost:317 文字列 {0: "i"} localhost:317 文字列 {0: "d"} localhost:317 文字列 {0: """} localhost:317 文字列 {0: ":"} localhost:317 文字列 {0: """} localhost:317 文字列 {0: "1"} localhost: 317 文字列 {0: """} localhost:317 文字列 {0: ","} localhost:317 文字列 {0: """} localhost:317 文字列 {0: "i"}
私は何を間違っていますか?オブジェクトをループする方法は?