I have JSON object like at below; And I want to add new Label 5 and Label 6 Element to my Json. I used this commands but i am getting this error : Cannot find function push in object [object Object]
I found an example from here ; Adding a new array element to a JSON object
I tried this example on my application, it is working but my json is not working.
var jsonStr = 'Json bla bla. you can see at below';
var obj = JSON.parse(jsonStr);
obj['reservationNetworks'].push({"type": "complex","componentTypeId": "nw.service","componentId": null,"classId": "Reservation.Network","typeFilter": null,"values": {"entries": [{"key": "networkPath","value": {"type": "entityRef","classId": "Network","id": "6afec529-7fbc-45b7-8ac5-6abf944946ce","componentId": null,"label": "Label 5"}},{"key": "networkProfile","value": {"type": "entityRef","classId": "networkProfile","id": "187014d4-62f6-434c-a4da-c3e262d25ed4","componentId": null,"label": "Label 6"}}]}});
jsonStr = JSON.stringify(obj);
{
"key": "reservationNetworks",
"value": {
"type": "multiple",
"elementTypeId": "COMPLEX",
"items": [
{
"type": "complex",
"componentTypeId": "nw.service",
"componentId": null,
"classId": "Reservation.Network",
"typeFilter": null,
"values": {
"entries": [
{
"key": "networkPath",
"value": {
"type": "entityRef",
"classId": "Network",
"id": "6afec529-7fbc-45b7-8ac5-6abf944946ce",
"componentId": null,
"label": "Label 1"
}
},
{
"key": "networkProfile",
"value": {
"type": "entityRef",
"classId": "networkProfile",
"id": "187014d4-62f6-434c-a4da-c3e262d25ed4",
"componentId": null,
"label": "Label 2"
}
}
]
}
},
{
"type": "complex",
"componentTypeId": "nw.service",
"componentId": null,
"classId": "Reservation.Network",
"typeFilter": null,
"values": {
"entries": [
{
"key": "networkPath",
"value": {
"type": "entityRef",
"classId": "Network",
"id": "6afec529-7fbc-45b7-8ac5-6abf944946ce",
"componentId": null,
"label": "Label 3"
}
},
{
"key": "networkProfile",
"value": {
"type": "entityRef",
"classId": "networkProfile",
"id": "187014d4-62f6-434c-a4da-c3e262d25ed4",
"componentId": null,
"label": "Label 4"
}
}
]
}
}
]
}
}