我有一个像这样的简单 json 文件。
"Test":
[
{
"id":"1",
"type" : "test1"
},
{
"id":"1.1",
"type":"test2"
},
{
"id":"1.1.1",
"type":"test3"
},
{
"id":"1.1.2",
"type":"test3"
}]
我想使用敲除在树模型中显示这些数据,如下所示。
1 test1
1.1 test2
1.1.1 test3
1.1.2 test4
我还没有看到任何满足我要求的示例解决方案。有人可以指导我吗?谢谢你。