摘要: 已知树形结构数据通过递归方式结合Math.max方法计算出树形结构最大层级数。 const treeData = [ { title: "0-0", key: "0-0", children: [ { title: "0-0-0", key: "0-0-0", children: [ { title 阅读全文
posted @ 2023-02-23 14:48 ZerlinM 阅读(347) 评论(0) 推荐(0)
摘要: 树形数据,需要给每层的数据添加层级,如下: const treeData = [ { id: 1, name: 'a', children: [ { id: 101, name: 'a1', children: null } ] }, { id: 2, name: 'b', children: [ 阅读全文
posted @ 2023-02-23 09:51 ZerlinM 阅读(680) 评论(0) 推荐(0)