Below is my array:
[{
"album_desc": "Test",
"id": 1,
"album_title": "Test",
"ImageName": "image004.png",
"album_pics": [{
"media_type": "image/png",
"last_modified_date": 1428913015000,
"thumnail_pic_loc": "image004.png",
"large_pic_loc": "image004.png",
"filter_type": "image/png",
"pic_id": "d5bd"
}]
}]
I need to change the structure of the array to what is shown below. How can I use this dynamically while uploading images? How can I push the array in array? Any suggestions?
{
"album_desc": "Album 1",
"id": "399234688",
"album_title": "Album 1",
"album_pics": [{
"media_type": "image",
"last_modified_date": "2015-01-16T00:40:39.071Z",
"thumnail_pic_loc": "3fe2a54346b3d54e-pinaki2.jpg",
"large_pic_loc": "3fe2a54346b3d54e-pinaki2.jpg",
"filter_type": "image/jpeg",
"pic_id": "d5bc"
}, {
"media_type": "image",
"last_modified_date": "2015-01-16T00:40:39.071Z",
"thumnail_pic_loc": "3fe2a54346b3d54e-pinaki3.jpg",
"large_pic_loc": "3fe2a54346b3d54e-pinaki3.jpg",
"filter_type": "image/jpeg",
"pic_id": "d5bd"
}],
}