How to loop on a JSON object?

Posted by Damiano on Stack Overflow See other posts from Stack Overflow or by Damiano
Published on 2010-06-11T11:38:56Z Indexed on 2010/06/11 11:43 UTC
Read the original article Hit count: 268

Filed under:
|

Hello,

I have this JSON object:

{"time":"123456789", "raw":"chat_history", "data":{
"msg":[
 {"time":1111111111, "user":"user1", "text":"text from user1"},
 {"time":2222222222, "user":"user2", "text":"text from user2"},
 {"time":3333333333, "user":"user3", "text":"text from user3"},
 {"time":4444444444, "user":"user4", "text":"text from user4"}
]
}}

I have to create a FOR to loop the elements of data.msg and print it:

I would print these results with the FOR:

11111111111 - user1 - text from users1
22222222222 - user2 - text from users2
33333333333 - user3 - text from users3
44444444444 - user4 - text from users4

Could you help me?

Thank you very much

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about JSON