树形结构根据Id查找指定节点

var data = [
    { 
      id: 1, name: "办公管理", pid: 0,
      children: [
        { 
          id: 2, name: "请假申请", pid: 1,
          children: [
            { id: 4, name: "请假记录", pid: 2}
          ],
        },
        { id: 3, name: "出差申请", pid: 1}
      ]
    },
    { 
      id: 5, name: "系统设置", pid: 0,
      children: [
        { 
          id: 6, name: "权限管理", pid: 5,
          children: [
            { id: 7, name: "用户角色", pid: 6},
            { id: 8, name: "菜单设置", pid: 6}
          ]
        }
      ]
    },
  ];
  function getChidlren(id) { 
    var hasFound = false, // 表示是否有找到id值
      result = null;
    var fn = function (data) { 
      if (Array.isArray(data) && !hasFound) {  // 判断是否是数组并且没有的情况下,
        data.forEach(item => { 
           if (item.id === id) {  // 数据循环每个子项,并且判断子项下边是否有id值
            result = item; // 返回的结果等于每一项
            hasFound = true; // 并且找到id值
          } else if (item.children) { 
            fn(item.children); // 递归调用下边的子项
          }
        })
      }
    }
    fn(data); // 调用一下
    return result;
  }
  console.log(getChidlren(3)); 
    原文作者:maotou526
    原文地址: https://blog.csdn.net/maotou526/article/details/105709728
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞