树形数组查找目标对象
2021-08-31 本文已影响0人
你好岁月神偷
breadthQuery(tree, id) {
var stark = [];
stark = stark.concat(tree);
while(stark.length) {
var temp = stark.shift();
if(temp.children) {
stark = stark.concat(temp.children);
}
if(temp.cpiId === id) {
return temp;
}
}
}
tree: 数据源 目标属性: id