我只是不够优秀的计算机科学家自己解决这个问题:(
我有一个返回 JSON 响应的 API,如下所示:
// call to /api/get/200
{ id : 200, name : 'France', childNode: [ id: 400, id: 500] }
// call to /api/get/400
{ id : 400, name : 'Paris', childNode: [ id: 882, id: 417] }
// call to /api/get/500
{ id : 500, name : 'Lyon', childNode: [ id: 998, id: 104] }
// etc
我想递归解析它并构建一个看起来像这样的分层 JSON 对象:
{ id: 200,
name: 'France',
children: [
{ id: 400,
name: 'Paris',
children: [...]
},
{ id: 500,
name: 'Lyon',
children: [...]
}
],
}
到目前为止,我有这个,它会解析树的每个节点,但不会将其保存到 JSON 对象中。如何扩展它以将其保存到 JSON 对象中?
hierarchy = {}
def get_child_nodes(node_id):
request = urllib2.Request(ROOT_URL + node_id)
response = json.loads(urllib2.urlopen(request).read())
for childnode in response['childNode']:
temp_obj = {}
temp_obj['id'] = childnode['id']
temp_obj['name'] = childnode['name']
children = get_child_nodes(temp_obj['id'])
// How to save temp_obj into the hierarchy?
get_child_nodes(ROOT_NODE)
这不是功课,但也许我需要做一些功课才能更好地解决这类问题:(谢谢你的帮助。