I need to create an object from a JSON file. The Input Json file looks like this.
{
"test":{
"Record":1,
"RecordValues":{
"Address":"3330 Bay Rd.",
"City":"Los Angeles",
"SecondObject":{
"1":"eins",
"2":"zwei"
}
}
}
}
What i have so far is this function..
var test = [];
function recFunc(obj, parent_id = null) {
for(var i in obj) {
if(typeof obj[i] == "object" && obj[i] !== null) {
test.push({title: i, children: []});
recFunc(obj[i], (test.length-1));
}else {
if(parent_id != null) {
test[parent_id].children.push({title: (i + " : " + obj[i])});
}else {
test.push({title: (i + " : " + obj[i])});
}
}
}
return test;
}
The output object should be as follows.
[
{ "title":"Record : 1" },
{
"title":"RecordValues",
"children":[
{ "title":"Address : 3330 Bay Rd." },
{ "title":"City : Los Angeles" },
{
"title":"SecondObject",
"children":[
{ "title":"1 : eins" },
{ "title":"2 : zwei" }
]
}
]
}
]
You can use Object.entries and reduce with recursion
let obj = {"test":{"Record":1,"RecordValues":{"Address":"3330 Bay Rd.","City":"Los Angeles","SecondObject":{"1":"eins","2":"zwei"}}}}
let recursive = (obj) =>
Object.entries(obj).reduce((op,[key,value]) => {
let final = typeof value === 'object' ? {title:key, children:recursive(value)}
: {title: `${key}: ${value}`}
return op.concat(final)
},[])
console.log(recursive(obj.test))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With