数据结构是这样的 text
是文本,没规律 value
的规律是第一层级 2 个字符串,第二层级 4 个,前 2 个是第一层级 value
值,以此类推。
const data = [
{text:'节点1',value:'01'},
{text:'节点2',value:'02'},
{text:'节点1-1',value:'0101'},
{text:'节点1-2',value:'0102'},
{text:'节点1-3',value:'0103'},
{text:'节点2-1',value:'0201'},
{text:'节点1-1-1',value:'010101'},
{text:'节点1-1-2',value:'010102'},
{text:'节点1-2-1',value:'010201'},
]
期望的树结构,并保证节点的顺序跟原数据保持一致:
const result = [
{
title: '节点1',
key: '01',
children: [
{
title: '节点1-1',
key: '0101',
children: [
{
title: '节点1-1-1',
key: '010101',
},
{
title: '节点1-1-2',
key: '010102',
},
]
}, {
title: '节点1-2',
key: '0102',
children: [
{
title: '节点1-2-1',
key: '010201',
},
]
}, {
title: '节点1-3',
key: '0103',
},
]
},
{
title: '节点2',
key: '02',
children: [
{
title: '节点2-1',
key: '0201',
},
]
},
]