想请问
我mongodb有一树状结构资料
每笔资料都有
root_id -> string
task_id -> string
children -> array [child1, child2, ...]
由root_id 可以捞到一堆资料,代表由同一root_id 底下任务
每一个task_id 只知道他的children
第一层就是root_id = task_id
需要由他往下爬
现在问题是前端要显示树状图
需要资料结构如下
{
root_id: {
child1:{
child11:{
......
}
},
child2: {
....
}
}
}
递回去爬所有资料是知道怎么做,
但是不知道怎么组成array
请各位大神提点一下