10

我只是不够优秀的计算机科学家自己解决这个问题:(

我有一个返回 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)

这不是功课,但也许我需要做一些功课才能更好地解决这类问题:(谢谢你的帮助。

4

5 回答 5

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)
于 2012-05-24T12:48:57.970 回答
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)
于 2012-05-24T12:58:04.697 回答
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 不是很宽容。最好只使用空格。)

于 2012-05-24T12:38:17.793 回答
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
于 2014-10-05T04:05:46.607 回答
-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

或者,如果您的语言支持,您可以使用迭代器而不是返回。

于 2012-05-24T12:48:16.027 回答