很多类似的问题,但我似乎可以让最简单的案例起作用。
代码是:
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")
谢谢