次の JSON コードがあります。
{
"chat": [
{
"username": "demo",
"text": "hi man",
"time": "1380167419"
},
{
"username": "admin",
"text": "hi",
"time": "1380167435"
},
{
"username": "demo",
"text": "this works flawless now.",
"time": "1380167436"
},
{
"username": "demo",
"text": "we basically done/",
"time": "1380167443"
}
]
}
私が実行すると:
var codes = JSON.parse(history); //history is the above JSON.
$.each(codes, function(key, value){
alert(value.chat.username);
});
それは何も警告せず、value.chat.username が未定義であると私に言い続けます...
私はどこで間違ったのですか?