我想用“BoxDet”名称列出“BoxDet”中的所有元素。目的是以这种方式列出它: BoxDet : ABC ...
我的 JSON 的一小部分:
{
"id":1,
"name":"BoxH",
"readOnly":true,
"children":[
{
"id":100,
"name":"Box1",
"readOnly":true,
"children":[
{
"id":1003,
"name":"Box2",
"children":[
{
"id":1019,
"name":"BoxDet",
"Ids":[
"ABC",
"ABC2",
"DEF2",
"DEFHD",
"LKK"
]
}
]
}
]
}
]
}
我的问题才刚刚开始,我只是不能像第一个 {} 那样深入。我的代码...
output_json = json.load(open('root.json'))
for first in output_json:
print first
for second in first:
print second
...返回给我类似的东西:
readOnly
r
e
a
d
O
n
l
y
children
c
h
i
l
d
r
e
n
……以此类推。我什至无法深入到 Box1,更不用说 Box2。我正在使用 Python 2.7