如何从 GQL 中的键值检索实体
我正在使用 Google App Engine 的数据存储区,并且想要检索一个实体,其键值写为“
ID/Name
id=1
有人可以建议我使用 GQL 查询来在数据存储区管理控制台和我的 python 程序中查看该实体吗?”
I am using Google App Engine's datastore and wants to retrieve an entity whose key value is written as
ID/Name
id=1
Can anyone suggest me a GQL query to view that entity in datastore admin console and also in my python program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的应用中使用 get_by_id() 模型的类方法:
在数据存储查看器中,您应该使用
KEY
函数:From your application use the get_by_id() class method of the Model:
From Datastore viewer you should use the
KEY
function:应用程序可以使用 get( ) 函数。
我不确定如何在管理控制台中返回特定实体。
An application can retrieve a model instance for a given Key using the get() function.
I'm not sure how to return a specific entity in the admin console.