實現對象數組的扁平化處理?


 1 const data = [{
 2    name: "撤回",
 3    type: "withdraw"
 4 }, {
 5    name: "...",
 6    type: "other",
 7    children: [{
 8       name: "會簽",
 9       type: "sign"
10    }]
11 }];
12 
13 const flat = data.reduce((pre, cur) => {
14    return cur.children ? pre.concat(cur.children) : pre.concat(cur);
15 }, []);

打印結果

[ { name: '撤回', type: 'withdraw' },
{ name: '會簽', type: 'sign' } ]


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM