다음과 같은 객체 배열이 있다고 가정해 보겠습니다. -
const arr = [ { "parentIndex": '0' , "childIndex": '3' , "parent": "ROOT", "child": "root3" }, { "parentIndex": '3' , "childIndex": '2' , "parent": "root3" , "child": "root2" }, { "parentIndex": '3' , "childIndex": '1' , "parent": "root3" , "child": "root1" } ];
우리는 그러한 객체 배열 중 하나를 취하는 JavaScript 함수를 작성해야 합니다. 그런 다음 함수는 재귀를 사용하고 위의 JSON을 트리 구조로 변환해야 합니다.
트리 구조는 다음과 같습니다. -
nodeStructure: { text: { name: "root3" }, children: [ { text: { name: "root2" } }, { text: { name: "root1" } } ] } };
예시
이에 대한 코드는 -
const arr = [ { "parentIndex": '0' , "childIndex": '3' , "parent": "ROOT", "child": "root3" }, { "parentIndex": '3' , "childIndex": '2' , "parent": "root3" , "child": "root2" }, { "parentIndex": '3' , "childIndex": '1' , "parent": "root3" , "child": "root1" } ]; const partial = (arr = [], condition) => { const result = []; for (let i = 0; i < arr.length; i++) { if(condition(arr[i])){ result.push(arr[i]); } } return result; } const findNodes = (parentKey,items) => { let subItems = partial(items, n => n.parent === parentKey); const result = []; for (let i = 0; i < subItems.length; i++) { let subItem = subItems[i]; let resultItem = { text: {name:subItem.child} }; let kids = findNodes(subItem.child , items); if(kids.length){ resultItem.children = kids; } result.push(resultItem); } return result; } console.log(JSON.stringify(findNodes('ROOT', arr), undefined, 4));
출력
콘솔의 출력은 -
[ { "text": { "name": "root3" }, "children": [ { "text": { "name": "root2" } }, { "text": { "name": "root1" } } ] } ]