let arr = [
{ id: 1, name: '部门1', pid: 0 },
{ id: 2, name: '部门2', pid: 1 },
{ id: 3, name: '部门3', pid: 1 },
{ id: 4, name: '部门4', pid: 3 },
{ id: 5, name: '部门5', pid: 4 },
]
function getListChildren(arr, total) {
const list = []
arr.forEach(item => {
if (item.pid === 0) {
const newItem = {item, ...list = total.filter(({ pid }) => pid === item.id)}
getListChildren(item.list, arr)
list.push(item)
}
})
return list
}
const getChildren = (data, result, pid) => {
for (const item of data) {
if (item.pid === pid) {
const newItem = { ...item, children: [] };
result.push(newItem);
getChildren(data, newItem.children, item.id);
}
}
}
const arrayToTree = (data, pid) => {
const result = [];
getChildren(data, result, pid)
return result;
}
console.log(arrayToTree(arr, 0))
let arr = [
{ id: 2, name: '部门2', pid: 1 },
{ id: 3, name: '部门3', pid: 1 },
{ id: 4, name: '部门4', pid: 3 },
{ id: 5, name: '部门5', pid: 4 },
{ id: 1, name: '部门1', pid: 0 },
]
function arrayToTree2(items) {
const result = [];
const itemMap = {};
for (const item of items) {
itemMap[item.id] = {...item, children: []}
}
for (const item of items) {
const id = item.id;
const pid = item.pid;
const treeItem = itemMap[id];
if (pid === 0) {
result.push(treeItem);
} else {
if (!itemMap[pid]) {
itemMap[pid] = {
children: [],
}
}
itemMap[pid].children.push(treeItem)
}
}
return result;
}
console.log(arrayToTree2(arr))