How To Properly Use Recursive Function To Go Through Multiple Nested Objects
In my Angular app, I'm using AngularTree directive (http://wix.github.io/angular-tree-control) to render a tree view of the following data structure, as shown in https://jsfiddle.n
Solution 1:
Change your data to this:
$scope.subjectAreas= [{
name:"Area-1",
link:"dashboards.dashboard_1",
entities: [{
name:'entities',
entities: [{
name:"entity 1"
}, {
name:"entity 2"
}]
}, {
name:'offerings',
entities: [{
name:"offering 1"
}, {
name:"offering 2"
}]
}]
}, {
name:"Area-2",
link:"dashboards.dashboard_1",
entities: [{
name:"entity 3"
}],
offerings: [{
name:"offering 3"
}]
}, {
name:"Area-3",
link:"dashboards.dashboard_1",
entities: [{
name:"entity 4"
}, {
name:"entity 5"
}, {
name:"entity 6"
}],
offerings: [{
name:"offering 4"
}, {
name:"offering 5"
}]
}];
I've only done the first part, but you can complete the rest.
Post a Comment for "How To Properly Use Recursive Function To Go Through Multiple Nested Objects"