Firebase 云存储在颤振中获取文档中的所有集合

时间:2021-06-01 13:01:53

标签: firebase flutter google-cloud-firestore

我将获取文档中的所有集合 当我不知道集合名称时,如何获取文档中的所有集合

await FirebaseFirestore.instance
    .collection('answers')
    .doc('vS55vOUPtNXaRY06IXIPq6V9ss73')
    .collection('uu')
    .get()
    .then((querySnapshot) {      

}).catchError((e){

});

Doument "vS55vOUPtNXaRY06IXIPq6V9ss73" 有 2 个集合,"uu" 和 "uy"。这是动态的。

enter image description here

1 个答案:

答案 0 :(得分:0)

Firestore.instance.collection("answers").snapshots 这可用于检索 firestore 中的所有文档