Google AppEngine (GAE) - 完整对象键

发布于 2024-10-17 13:04:52 字数 508 浏览 3 评论 0原文

我的数据存储中有一个子实体列表。 我查询数据存储以获取它们的 ID 和名称,以便将它们显示在列表框中。 (我发送长ID) 当用户选择一个实体时,我需要获取实体信息。 我正在使用这个:

Key parentKey = KeyFactory.createKey(Parent.class.getSimpleName(), parentLongKey);
Key childKey = KeyFactory.createKey(parentKey, Child.class.getSimpleName(), childLongKey);
manager.getObjectById(Child.class, childKey);

它可以工作,但是如果子类有它自己的子类,我将需要创建父键、子键和子子键???

有一种方法可以获取足够的 id 类型来查询子实体而不创建父实体???

我尝试使用字符串,但遇到了同样的问题。 我尝试了 .toString key 版本,它也有类似的问题,

非常感谢!

I have a list of child entities in my datastore.
I query the datastore to get their id and name to show them in a listbox. (I send the long id)
When the user selects an entity I need to get the entity info.
I'm using this:

Key parentKey = KeyFactory.createKey(Parent.class.getSimpleName(), parentLongKey);
Key childKey = KeyFactory.createKey(parentKey, Child.class.getSimpleName(), childLongKey);
manager.getObjectById(Child.class, childKey);

and it works, but if the child class has it own child class I'll need to create the parent key, the child key and the subchild key???

There is a way to get some id type enough to query the child entity without creating the parents entities???

I tried using the string but has the same problem.
I tried the .toString key version and it has a similar problem

Thx a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦屿孤独相伴 2024-10-24 13:04:52

使用整个密钥的字符串化版本,使用 keyToString 和 stringToKey。

Use the stringified version of the whole key, using keyToString and stringToKey.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文