向父节点动态插入子节点,如何更新父数组。
例如 已知索引为
const pathKey = [0, 0, 1]
已知父节点为
const apple = [
{name: 1,
children:[
{name: 32,
children:[{
name: 1
}, {
name: 2
}]
}]
},
{name: 13}
]
待插入子节点为:
const arr = [{ name: 999 }]
需要实现 apple[0].children[0].children[1].children = arr
pathKey是长度不定的。求帮助~
你写个递归函数吧!,判断只要有children,就继续执行自身,直到没有children,就直接插入数据。
function diedai(arr){
}