扁平结构转换为树结构

这段代码展示了如何使用JavaScript将具有pid关系的列表转换为树形结构数据。函数tranListToTreeData通过递归遍历list,查找pid为指定rootValue的项,并构建其子节点。最终生成的树形结构适合表示层级关系的数据。
摘要由CSDN通过智能技术生成
let list = [
        {
          id: 1,
          label: "1",
          pid: 0,
        },
        {
          id: 11,
          pid: 1,
          label: "1-1",
        },
        {
          id: 111,
          pid: 11,
          label: "1-1-1",
        },
        {
          id: 2,
          label: "2",
          pid: 0,
        },
        {
          id: 22,
          pid: 2,
          label: "2-2",
        },
      ];

      function tranListToTreeData(list, rootValue) {
        var arr = [];
        list.forEach((item) => {
          if (item.pid === rootValue) {
            // 找到之后 就要去找 item 下面有没有子节点
            const children = tranListToTreeData(list, item.id);
            if (children.length) {
              // 如果children的长度大于0 说明找到了子节点
              item.children = children;
            }
            arr.push(item); // 将内容加入到数组中
          }
        });
        return arr;
      }
      let result = tranListToTreeData(list, 0);
      // 转换后的list树结构为
      [{
          id: 1,
          pid: 0,
          label: "1",
          children: [{
              id: 11,
              pid: 1,
              label: "1-1",
              children: [{
                  id: 111,
                  pid: 11,
                  label: "1-1-1",
              }]
          }]
      },{
          id: 2,
          pid: 0,
          label: '2',
          children: [{
              id: 22,
              pid: 2,
              label: '2-2'
          }]
      }]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值