Я пытаюсь сохранить результат json в хранилище данных GAE, чтобы прочитать его позже.Я сбрасываю его в строку, затем сохраняю, затем читаю и загружаю обратно в диктовку.Но я больше не могу читать его как диктат после загрузки.
result = freebase.mqlready(query)
Результат печати:
[{u'mid': u'/m/095hd',
u'name': u'Settlers of Catan',
u'type': u'/games/game'},
{u'mid': u'/m/025sm93',
u'name': u'The Game of Life',
u'type': u'/games/game'}]
for r in result:
name = r.name # works, I can get the name and other values.
json_dump = simplejson.dumps(result)
text = db.Text(json_dump)
fbresult = model.FB(text=text)
fbresult.put()
####
stored_text = fbresult.text
json = simplejson.loads(stored_text)
Печать json:
[{u'mid': u'/m/095hd',
u'name': u'Settlers of Catan',
u'type': u'/games/game'},
{u'mid': u'/m/025sm93',
u'name': u'The Game of Life',
u'type': u'/games/game'}]
for j in json:
name = json.name
ОШИБКА:
AttributeError: 'dict' object has no attribute 'name'