我只是不是一个足够好的计算机科学家来自己解决这个问题:(
我有一个返回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)
这不是家庭作业,但也许我需要做一些功课来更好地解决这类问题:(谢谢你的帮助。
答案 0 :(得分:6)
def get_node(node_id):
request = urllib2.Request(ROOT_URL + node_id)
response = json.loads(urllib2.urlopen(request).read())
temp_obj = {}
temp_obj['id'] = response['id']
temp_obj['name'] = response['name']
temp_obj['children'] = [get_node(child['id']) for child in response['childNode']]
return temp_obj
hierarchy = get_node(ROOT_NODE)
答案 1 :(得分:2)
你可以使用它(一个更紧凑和可读的版本)
def get_child_nodes(node_id):
request = urllib2.Request(ROOT_URL + node_id)
response = json.loads(urllib2.urlopen(request).read())
return {
"id":response['id'],
"name":response['name'],
"children":map(lambda childId: get_child_nodes(childId), response['childNode'])
}
get_child_nodes(ROOT_NODE)
答案 2 :(得分:1)
每次调用递归函数时都没有返回任何内容。因此,似乎您只想在循环的每次迭代中将每个temp_obj
字典附加到列表中,并在循环结束后返回它。类似的东西:
def get_child_nodes(node_id):
request = urllib2.Request(ROOT_URL + node_id)
response = json.loads(urllib2.urlopen(request).read())
nodes = []
for childnode in response['childNode']:
temp_obj = {}
temp_obj['id'] = childnode['id']
temp_obj['name'] = childnode['name']
temp_obj['children'] = get_child_nodes(temp_obj['id'])
nodes.append(temp_obj)
return nodes
my_json_obj = json.dumps(get_child_nodes(ROOT_ID))
(顺便说一句,请注意混合标签和空格,因为Python不太宽容。最好只留空间。)
答案 3 :(得分:1)
今天下午我遇到了同样的问题,并最终重新调整了我在网上发现的一些代码。
我已将代码上传到Github(https://github.com/abmohan/objectjson)以及PyPi(https://pypi.python.org/pypi/objectjson/0.1)下的软件包名称' objectjson'。这里也是如下:
代码 (objectjson.py)
import json
class ObjectJSON:
def __init__(self, json_data):
self.json_data = ""
if isinstance(json_data, str):
json_data = json.loads(json_data)
self.json_data = json_data
elif isinstance(json_data, dict):
self.json_data = json_data
def __getattr__(self, key):
if key in self.json_data:
if isinstance(self.json_data[key], (list, dict)):
return ObjectJSON(self.json_data[key])
else:
return self.json_data[key]
else:
raise Exception('There is no json_data[\'{key}\'].'.format(key=key))
def __repr__(self):
out = self.__dict__
return '%r' % (out['json_data'])
样本使用
from objectjson import ObjectJSON
json_str = '{ "test": {"a":1,"b": {"c":3} } }'
json_obj = ObjectJSON(json_str)
print(json_obj) # {'test': {'b': {'c': 3}, 'a': 1}}
print(json_obj.test) # {'b': {'c': 3}, 'a': 1}
print(json_obj.test.a) # 1
print(json_obj.test.b.c) # 3
答案 4 :(得分:-1)
免责声明:我不知道json是关于什么的,所以你可能需要弄清楚如何用你的语言正确编写它:p。如果我的示例中的伪代码太伪,请随时询问更多详细信息。
你需要在某个地方归还某些东西。如果你从未在递归调用中返回某些内容,则无法获得对新对象的引用并将其存储在您调用递归的对象中。
def getChildNodes (node) returns [array of childNodes]
data = getData(fromServer(forThisNode))
new childNodes array
for child in data :
new temp_obj
temp_obj.stores(child.interestingStuff)
for grandchild in getChildNodes(child) :
temp_obj.arrayOfchildren.append(grandchild)
array.append(temp_obj)
return array
或者,如果您的语言支持,则可以使用迭代器而不是返回。