0
D3のnewbです。私は親、子データを作成したいインデックスから親子ネストJSONを作成
[
{
"health": "OK",
"name": "new A",
"index": "A",
"children": [
{
"health": "SEVERE",
"name": "new AB",
"index": "A > B",
"children": [
{
"health": "OK",
"name": "new ABC",
"index": "A > B > C"
}
]
},
{
"health": "SEVERE",
"name": "new AD",
"index": "A > D",
"children": [
{
"health": "OK",
"name": "new ADE",
"index": "A > D > E"
}
]
}
]
}
]
:
[
{
"health": "OK",
"name": "new A",
"index": "A"
},
{
"health": "SEVERE",
"name": "new AB",
"index": "A > B"
},
{
"health": "OK",
"name": "new ABC",
"index": "A > B > C"
},
{
"health": "OK",
"name": "new ADE",
"index": "A > D > E"
},
{
"health": "SEVERE",
"name": "new AD",
"index": "A > D"
}
]
私はJSON上から親子ネストされたデータを以下の作成したい:私はJSONの次の型を持っているd3.jdバージョン3 を使用していますインデックスを通じて。 したがって、インデックスが "A> B"で、 "A"が親で、 "B"が子である場合。
これは私が持っているサンプルデータです。大きなデータのだから、パフォーマンスを上げたい
d3またはjqueryでオブジェクトのネストされた親子JSONフォームの配列を作成することは可能ですか?
'object'のネストされた親子JSON形式の配列を作成します - それは、より簡単かつ非多忙です –