gpt4 book ai didi

android - flutter : how i get data from firestore in List?

转载 作者:IT王子 更新时间:2023-10-29 07:04:01 25 4
gpt4 key购买 nike

大家好,我正在尝试从我的 firestore 数据库中获取数据到 List<String>为此,我创建变量 List<String> listCour;我使用该指令从 firestore 获取数据

   Firestore.instance
.collection('MATH')
.document(doc.documentID)
.collection("cours")
.snapshots()
.listen(
(cour)=> cour.documents.forEach((doc){

listCour.add(doc.documentID);
})
);

但是列表没有数据!!

最佳答案

尝试使用 doc.data

listCour.add(doc.data);                   
Firestore.instance
.collection('MATH')
.document(doc.documentID)
.collection("cours")
.getDocuments()
.then((QuerySnapshot snapshot) {
snapshot.documents...
})

关于android - flutter : how i get data from firestore in List<String>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55223236/

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