有一串数组如下:
var filelist = [{ name: 'a.html', path: 'src/app' }, { name: 'b.html', path: 'src/app' }, { name: 'c.html', path: 'src/app/com' }, { name: 'd.html', path: 'src/acc' }, { name: 'e.html', path: 'src/acc' }]
如何使用JavaScript将其遍历为文件树的格式:
如下
[{
title: 'src',
children: [{
title: 'app',
children: [{
title: 'a.html'
}, {
title: 'b.html',
}, {
title: 'com',
children: [{
title: 'c.html'
}
}]
}, {
title: 'acc',
children: [{
title: 'c.html'
}, {
title: 'd.html',
}]
}]
}]
├── src
│ ├── app
│ ├── index.html
│ ├── a.html
│ ├── com
│ ├── b.html
随手写的,只是针对你给出的 filelist 的格式
详见以下代码