如何从Firestore的子集合中获取所有文档

时间:2020-02-06 17:58:53

标签: java android google-cloud-firestore

我有这样的结构:

A (collection): {a (doc): {B (collection): {b (doc)}}}

我需要从所有“ a”中获取“ b”。

我不需要它们之间的关系,我只需要所有的“ b”。

我正在使用Java的Android Studio中工作。

1 个答案:

答案 0 :(得分:1)

要获取子集合中的所有文档,只需使用您知道的集合和文档的名称构建到它的路径,然后使用get()fetch the resultsjust like any other Query:< / p>

Query q = firestore.collection("A").document("a").collection("B");
q.get() // add listeners for the results