我将获取文档中的所有集合 当我不知道集合名称时,如何获取文档中的所有集合
await FirebaseFirestore.instance
.collection('answers')
.doc('vS55vOUPtNXaRY06IXIPq6V9ss73')
.collection('uu')
.get()
.then((querySnapshot) {
}).catchError((e){
});
Doument "vS55vOUPtNXaRY06IXIPq6V9ss73" 有 2 个集合,"uu" 和 "uy"。这是动态的。
答案 0 :(得分:0)
Firestore.instance.collection("answers").snapshots
这可用于检索 firestore 中的所有文档