- ALL
- java33
- linux32
- 工具17
- 其他14
- 数据库7
- git5
- nas5
- vue5
- 前端5
- ai3
- framework3
- windows3
- app2
- 脚本2
- docker2
- 智能家居2
- hexo2
- 小程序2
- maven2
- spring2
- api1
- 资源1
- mysql1
- markdown1
- 安全1
- python1
- question1
- 运维1
- 数据传输1
- 数据结构1
- nginx1
js常用的工具类示例
轮训获取树形结构的每一条线 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253/** * 获取树形结构的每一条线 * @param tree */export function recurTree(tree) { let res = []; let nodeArr = []; const findPath = (res, tree, nodePath) => { if (tree.children) { tree.children.forEach((item, index) => { findPath(res, tree.children[index], [...nodePath, item.unitId]) }) } else { res.push(nodePath); } ...