树状结构遍历方法

简单的树状结构遍历方法

cv方法

// 方法
         function handleTree(data, deptid, parentid, children, rootid) {
            deptid = deptid || "deptid"
            parentid = parentid || 'parentid'
            children = children || 'children'
            if (data.length == 0) {
                return
            }
            //console.log(data.map(item =>  return item[parentId] }))
            if (typeof (data[0][parentid]) == 'string') {
                rootid = data[0][parentid]
                console.log(rootid);
            } else {

                rootid = 0
            }
            //rootid = rootid ll Math.min.apply(Math, data.map(item( return item[parentId] )) Il "e
            //对源数据深度克隆
            const cloneData = JSON.parse(JSON.stringify(data))
            //循环所有项
            const treeData = cloneData.filter(father => {
                let branchArr = cloneData.filter(child => { //返回每一项的子级数组
                    return father[deptid] === child[parentid]
                    console.log(cloneData);
                })
                branchArr.length > 0 ? father.children = branchArr : '';//返回第一层
                return father[parentid] === rootid;
            })
            return treeData != '' ? treeData : data;
        }

使用

// 示例数组
 let arr = [
            { ids: 1,parentid:0, text: '父1' },
            { ids:3,parentid: 1, text: '子1' },
            { ids:4,parentid: 1, text: '子1' },
            { ids:5,parentid: 1, text: '子1' },
            { ids: 2,parentid:0, text: '父1' },
            { ids:3,parentid: 2, text: '子1' },
            { ids:4,parentid: 2, text: '子1' },
            { ids:5,parentid: 2, text: '子1' },
        ]
        let arr2=handleTree(arr,"ids","parentid")
        console.log(arr2);

返回结果
![在这里插入图片描述](https://img-blog.csdnimg.cn/1a62fe4de3824d778146b2947b7983c0.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值