I am parsing the following JSON Message hereafter with the JQuery Function below. As seen by observing the JSON Message, the second Object in the friends.data Array does not have any “statuses” Item, but only “name” and “id”, contrary to the first and last objects in the Main Array. Nevertheless, I am having issues parsing the entire Message since the $.each(friend.statuses, function(j, status) Fucntion stops at the second Item (which does not have any “statuses” entry) without proceeding to the next one (last one in this example), which does contain a “statuses” Item. I have tried adding some logic before and after the $.each(friend.statuses, function(j, status) Fucntion in order to verify if there is an existing Item (“statuses”), but without success. How could I “Skip” over this second Item in the Main Array, so that the second $.each Function continues to parse the Main Array until the end of the JSON Message.
Thank you in advance for your time.
Regards,
JF
Function:
$.each(response.friends.data, function(i, friend){
$.each(friend.statuses, function(j, status){
alert(status.message);
});
});
JSON Message:
{
"id": "idValue",
"friends": {
"data": [
{
"name": "NameValue",
"id": "idValue",
"statuses": {
"data": [
{
"message": "Msg1",
"updated_time": "Date",
},
{
"message": "Msg2",
"updated_time": "Date",
},
],
}
},
{
"name": "NameValue",
"id": "idValue",
}
{
"name": "NameValue",
"id": "idValue",
"statuses": {
"data": [
{
"message": "Msg1",
"updated_time": "Date",
},
{
"message": "Msg2",
"updated_time": "Date",
},
],
}
}
],
}
}