我正在使用Google App Engine开发Python应用。我想从实体中检索属性列表和密钥。我使用下面的代码
recs = db.GqlQuery('select __key__,content from FileHistory')
但我无法获得关键属性。有人知道怎么做。我是否需要使用任何关键字来检索它。
谢谢,
答案 0 :(得分:2)
如果您打算使用projection query,则无需传递键的请求,它将隐式返回每个查询。
recs = db.GqlQuery('select content from FileHistory')
for rec in recs:
print rec.key(), rec.content