I have a JSON array.I try to Convert nested hierarchical tree.But it didn't work. I need a hierarchical tree using this JSON.
Here is my data:
[{
"_id" : "59b65ee33af7a11a3e3486c2",
"C_TITLE" : "Sweet and Snacks",
"C_PARENT" : "0",
"C_ICON" : "",
"C_IMAGE" : "59b65ee33af7a11a3e3486c2_sweets.jpg",
"C_STATUS" : "Active"
}
{
"_id" : "59b663d709da571dc3d79f49",
"C_TITLE" : "Groceries",
"C_PARENT" : "0",
"C_ICON" : "",
"C_IMAGE" : "59b663d709da571dc3d79f49_grocery.jpg",
"C_STATUS" : "Active"
},
{
"_id" : "59b6648209da571dc3d79f4a",
"C_TITLE" : "Dals & Pulses",
"C_PARENT" : "59b663d709da571dc3d79f49",
"C_ICON" : "",
"C_IMAGE" : "59b6648209da571dc3d79f4a_dals.jpg",
"C_STATUS" : "Active"
},
{
"_id" : "59b6657509da571dc3d79f4c",
"C_TITLE" : "Rice & Rice products",
"C_PARENT" : "59b663d709da571dc3d79f49",
"C_ICON" : "",
"C_IMAGE" : "59b6657509da571dc3d79f4c_rice.jpg",
"C_STATUS" : "Active"
}]
I need like this output
[
{
" _id" : "59b65ee33af7a11a3e3486c2",
"C_TITLE" : "Sweet and Snacks",
"C_PARENT" : "0",
"C_ICON" : "",
"C_IMAGE" : "59b65ee33af7a11a3e3486c2_sweets.jpg",
"C_STATUS" : "Active",
children:[]
}
]
Based on check C_PARENT and _id.