1

很多类似的问题,但我似乎可以让最简单的案例起作用。

代码是:

retval = urllib2.Request(callstr)
opener = urllib2.build_opener()
f = opener.open(retval)
json = simplejson.load(f)
for item in json:
    print item.get("ExtActionResponse.info")

json 对象似乎已正确填充。

 json
     ExtActionRepsonse  <dict ox7122345...>
        info            u"345167273\n1234:56768"    <----- This is the data I'm expecting
        resultCode      u"0"
        resultStr       u"Success"
        ...etc...

但它在 get item 调用中窒息。

  print item.get("ExtActionResponse.info")

谢谢

4

1 回答 1

3

..... 什么?

print json['ExtActionResponse']['info']
于 2013-01-18T17:21:55.807 回答