FireStore是否由嵌套文档的更改触发了collection.addSnapshotListener?

时间:2018-05-15 02:01:27

标签: firebase google-cloud-firestore

对于Firebase Cloud Firestore的集合addSnapshotListener:

mFireStore = FirebaseFirestore.getInstance();
mFireStore.collection("someCollectionName").addSnapshotListener

如果someCollectionName包含的文档随后包含另一个文档集合,例如:

/someCollectionName/docID1203291030/nestedCollection/docID9040293094

如果修改过的最嵌套文档集合中的文档(在此示例中为docID9040293094)会触发someCollectionName集合快照侦听器以检索更新的集合吗?

1 个答案:

答案 0 :(得分:2)

据我所知,当修改该文档的子集时,不会触发文档上的侦听器。您必须为特定的子集合添加一个侦听器,以获得有关此类修改的通知。