gpt4 book ai didi

java - 我如何获取 Google App Engine 中的所有子实体(低级 API)

转载 作者:搜寻专家 更新时间:2023-11-01 03:14:57 25 4
gpt4 key购买 nike

我正在使用 Google App Engine for Java 中的低级 API,并希望获取特定父实体的所有子实体:

给定下图:

Parent (1)
|
+ --- Child A (2)
| |
| + --- Child B (3)
|
+ --- Child A (4)

我想要一个像下面这样的列表

[Child A (2), Child B (3), Child A (4)]

这是我最好的尝试:

Entity pe = new Entity("parent");

Entity c1 = new Entity("childA", pe.getKey());
Entity c2 = new Entity("childB", c1.getKey());
Entity c3 = new Entity("childA", pe.getKey());

// storage code left out for brevity

Key parentKey = KeyFactory.createKey(null, "parent", 1);

// According to documentation this should work (but does not)
PreparedQuery q = datastore.prepare(new Query(parentKey));

最佳答案

我发现这是本地开发服务器中的一个已知错误。上传到谷歌时它工作正常

关于java - 我如何获取 Google App Engine 中的所有子实体(低级 API),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/998794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com