我有一个JSON对象,如下所示:
{
"a" : "test",
"b" : "test",
"c" : [{"d": "test data", "f": ['e','f','g']},
{"f": "test data", "f": ['e','f','g']}
],
"d" : [{"g": "test data", "f": ['e','f','g']},
{"h": "test data", "f": ['e','f','g']}
]
}
我需要解析它并以树格式显示它。请问有人指示一些方向。我正在研究红宝石。