q = Institution_Table.all().run(batch_size=2000).order('name')
给我以下错误:
AttributeError: '_QueryIterator' 对象没有属性 'order'
q = Institution_Table.all().run(batch_size=2000).order('name')
给我以下错误:
AttributeError: '_QueryIterator' 对象没有属性 'order'
文档中给出的示例显示.order('name')
附加到查询。
在您的示例中,您在运行查询后附加它。
尝试:
q = Institution_Table.all().order('name')
results = q.run()
这里:https ://developers.google.com/appengine/docs/python/datastore/queries#Restrictions_on_Queries