我有以下的JSON:的Javascript遞歸(樹形結構)
var jsonObj = [
{
"parentIndex": '0' ,
"childIndex": '3' ,
"parent": "ROOT",
"child": "root3"
},
{
"parentIndex": '3' ,
"childIndex": '2' ,
"parent": "root3" ,
"child": "root2"
},
{
"parentIndex": '3' ,
"childIndex": '1' ,
"parent": "root3" ,
"child": "root1"
}
];
我需要上面的JSON轉換爲使用遞歸樹結構中的Javascript。樹結構將類似於:
nodeStructure: {
text: { name: "root3" },
children: [
{
text: { name: "root2" }
},
{
text: { name: "root1" }
}
]
}
};
的數據排序?你有嘗試過什麼嗎? –
數據不需要排序(排序不需要在輸出中)。這只是一個示例數據。 – Geeta
你爲什麼需要遞歸? –