I'm retrieving a JSON response from a server which is already sorted by "sort_id".
responseText ==>
{
"status": 1,
"complete": 1,
"list": {
"178432351": {
"item_id": "178432351",
"sort_id": 0,
},
"203720680": {
"item_id": "203720680",
"sort_id": 1,
},
"286082053": {
"item_id": "286082053",
"sort_id": 2,
},
"284062632": {
"item_id": "284062632",
"sort_id": 3,
},
"16137955": {
"item_id": "16137955",
"sort_id": 4
}
},
"since": 1359248876
}
var response = JSON.parse(request.responseText);
Once I parse it with JSON.parse into an object and then try print the data of each item via
for(item in response)
The data that get printed are completely unordered. Is there a way to use the "for in" loop by the sort_id order? or any other way to print the received data that way.