vue 递归重新生成树形结构的id
时间: 2023-12-15 12:29:58 浏览: 67
在Vue中,可以通过递归重新生成树形结构的id。具体实现方法如下:
1. 首先,需要定义一个组件,用于展示树形结构。
2. 在组件中,定义一个方法,用于递归生成树形结构的id。该方法需要传入两个参数:当前节点的id和当前节点的子节点数组。
3. 在方法中,首先判断子节点数组是否为空,如果为空,则直接返回空数组。
4. 如果子节点数组不为空,则遍历子节点数组,对每个子节点进行递归调用,生成其对应的id,并将其存入一个新的数组中。
5. 最后,将当前节点的id和新生成的子节点id数组合并成一个新的数组,并返回该数组。
具体代码实现可以参考以下示例:
```
<template>
<div>
<ul>
<li v-for="node in treeData" :key="node.id">
{{ node.name }}
<tree-node :node="node" :pid="node.id" :pidStr="'parentId'" :list="treeData" />
</li>
</ul>
</div>
</template>
<script>
import TreeNode from './TreeNode.vue';
export default {
components: {
TreeNode,
},
data() {
return {
treeData: [
{ id: 1, name: 'Node 1', parentId: 0 },
{ id: 2, name: 'Node 2', parentId: 1 },
{ id: 3, name: 'Node 3', parentId: 1 },
{ id: 4, name: 'Node 4', parentId: 2 },
{ id: 5, name: 'Node 5', parentId: 2 },
{ id: 6, name: 'Node 6', parentId: 3 },
{ id: 7, name: 'Node 7', parentId: 3 },
],
};
},
};
</script>
```
```
<template>
<ul v-if="children.length">
<li v-for="child in children" :key="child.id">
{{ child.name }}
<tree-node :node="child" :pid="child.id" :pidStr="pidStr" :list="list" />
</li>
</ul>
</template>
<script>
import TreeNode from './TreeNode.vue';
export default {
components: {
TreeNode,
},
props: {
node: {
type: Object,
required: true,
},
pid: {
type: Number,
required: true,
},
pidStr: {
type: String,
required: true,
},
list: {
type: Array,
required: true,
},
},
computed: {
children() {
const children = this.list.filter(item => item[this.pidStr] === this.pid);
return children.map(child => ({
...child,
children: this.initTree({ pid: child.id, pidStr: this.pidStr, list: this.list }),
}));
},
},
methods: {
initTree({ pid, pidStr, list }) {
const children = list.filter(item => item[pidStr] === pid);
if (!children.length) {
return [];
}
return children.map(child => ({
...child,
children: this.initTree({ pid: child.id, pidStr, list }),
}));
},
},
};
</script>
```
阅读全文