如何从 GAE 中的 ReferenceProperty 中仅获取密钥(而不加载实体)?
当访问 ReferenceProperty 时,它会从数据存储区加载一个实体,但有时我只想使用引用的模型密钥,并且不想支付引用模型加载的额外成本。
有没有办法只访问 ReferenceProperty 上的键?
When ReferenceProperty is accessed it loads an entity from datastore, but sometimes I'd like only to use a referenced model key only and I don't want to pay the additional cost of referenced model loadup.
Is there a way to access just the key on a ReferenceProperty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
给定后
,
您可以检索键
foo
的bar
ReferenceProperty
,如下所示:Given
and
you can retrieve the key
foo
'sbar
ReferenceProperty
like so: