我是JSON的新手,我想了解如何创建像这样的树的JSON表示形式:
每个节点都有id(需要整数),label(字符串,可选)和一个childs节点数组(可选)。
任何建议都是值得欢迎的,我真的不知道从哪里开始
答案 0 :(得分:0)
那呢? 孩子必须重用吗?
{
"id": 1,
"label": "A",
"child": [
{
"id": 2,
"label": "B",
"child": [
{
"id": 5,
"label": "E",
"child": []
},
{
"id": 6,
"label": "F",
"child": []
},
{
"id": 7,
"label": "G",
"child": []
}
]
},
{
"id": 3,
"label": "C",
"child": []
},
{
"id": 4,
"label": "D",
"child": [
{
"id": 8,
"label": "H",
"child": []
},
{
"id": 9,
"label": "I",
"child": []
}
]
}
]
}