JavaScript通过json数组循环?

我试图遍历以下json数组:


{

  "id": "1",

  "msg": "hi",

  "tid": "2013-05-05 23:35",

  "fromWho": "hello1@email.se"

}, {

  "id": "2",

  "msg": "there",

  "tid": "2013-05-05 23:45",

  "fromWho": "hello2@email.se"

}

并尝试了以下


for (var key in data) {

   if (data.hasOwnProperty(key)) {

      console.log(data[key].id);

   }

}

但是由于某种原因,我只得到第一部分,id 1值。


有任何想法吗?


HUX布斯
浏览 352回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript