I have structure database in array of objects stored like this:
arry = [{"name": "a", "id": "2", "data":"foo", "parent": "1"},
{"name": "b", "id": "3", "data":"foo", "parent": "2"},
{"name": "c", "id": "4", "data":"foo", "parent": "3"},
{"name": "d", "id": "5", "data":"foo", "parent": "3"},
{"name": "e", "id": "6", "data":"foo", "parent": "4"},
{"name": "f", "id": "7", "data":"foo", "parent": "5"}]
I want nested structure like this
{
"2":{
"name": "a",
"data": "foo",
"3":{
"name": "b",
"data":"foo",
"4":{
"name": "c",
"data":"foo",
"6":{
"name": "e",
"data": "foo",
};
},
"5":{
"name": "d",
"data": "foo",
"7":{
"name": "f",
"data": "foo"
}
}
}
}
};
so I can use it Angular Material tree.
I have structure database in array of objects stored like this:
arry = [{"name": "a", "id": "2", "data":"foo", "parent": "1"},
{"name": "b", "id": "3", "data":"foo", "parent": "2"},
{"name": "c", "id": "4", "data":"foo", "parent": "3"},
{"name": "d", "id": "5", "data":"foo", "parent": "3"},
{"name": "e", "id": "6", "data":"foo", "parent": "4"},
{"name": "f", "id": "7", "data":"foo", "parent": "5"}]
I want nested structure like this
{
"2":{
"name": "a",
"data": "foo",
"3":{
"name": "b",
"data":"foo",
"4":{
"name": "c",
"data":"foo",
"6":{
"name": "e",
"data": "foo",
};
},
"5":{
"name": "d",
"data": "foo",
"7":{
"name": "f",
"data": "foo"
}
}
}
}
};
so I can use it Angular Material tree.
Share Improve this question edited Oct 17, 2018 at 6:27 user8401765 asked Oct 17, 2018 at 4:36 Eka hersadaEka hersada 151 silver badge6 bronze badges 1- This is more of a programming problem than an angular one. Also, what is your data source for the table, can you guarantee that there wont be any cycles? – user8401765 Commented Oct 17, 2018 at 5:43
1 Answer
Reset to default 5To do this, you can reduce your array of nodes to a dictionary, using each node's id
as index.
This way, you'll have all the nodes accessible by their id directly on the dictionary. You'll thus be able to store each node in its parent easily.
Once all the nodes are stored in their respective parent, you just have to grab the root node from the dictionary, it will hold all your tree.
It may happen that the parent isn't yet in the dictionary when you parse the child, in this case, you can use a dummy object that will play a placeholder the time we e to parse the actual parent node.
var arry = [
{"name": "a", "id": "2", "data":"foo", "parent": "1"},
{"name": "b", "id": "3", "data":"foo", "parent": "2"},
{"name": "c", "id": "4", "data":"foo", "parent": "3"},
{"name": "d", "id": "5", "data":"foo", "parent": "3"},
{"name": "e", "id": "6", "data":"foo", "parent": "4"},
{"name": "f", "id": "7", "data":"foo", "parent": "5"}
];
function totree(branches, node) {
// if we don't have the parent yet
if (!branches[node.parent]) {
// create a dummy placeholder for now
branches[node.parent] = {};
}
// store our node in its parent
branches[node.parent][node.id] = node;
// store our node in the full list
// copy all added branches on possible placeholder
branches[node.id] = Object.assign(node, branches[node.id]);
return branches;
}
var tree = arry.reduce(totree, {})['1']; // get only the root node ('1')
console.log(tree);
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744946347a4602641.html
评论列表(0条)