js 遍历树形结构(Tree),根据id找到对应的name(递归)
getTreeName(list,id){ let _this=this for (let i = 0; i < list.length; i++) { let a=list[i] if(a.id===id){ return a.name }else{ if(a.children && a.children.length>0){ let res=_this.getTreeName(a.children,id) if(res){ return res } } } } } ———————————————— 版权声明:本文为CSDN博主「毅大师」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/qq_39648029/article/details/116601055