Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to loop on a JSON object?

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

like image 722
Damiano Avatar asked Jun 11 '10 11:06

Damiano


1 Answers

for(var i = 0; i < data.msg.length; i++)
{
    var row = data.msg[i];
    print(row.time + ' - ' + row.user + ' - ' + row.text);
}
like image 78
ThiefMaster Avatar answered Sep 21 '22 18:09

ThiefMaster