我是flutter的初学者,从Firebase数据库获取/获取数据时遇到问题 由 爷不缺孙子发布于 2020-05-09 16:59:31 flutterdartfetchgoogle-cloud-firestore 收藏 'This is flow of firebase database, I have tried a different piece of code please write some line of code for me' 评论 请 登录后发表观点 劫走EXO 2020-05-09 16:59:32 void fetch() async { QuerySnapshot snapshot = await _firestore.collection('users') .document(your uid) .collection('tasks').getDocuments(); final documents = snapshot.documents; for(var doc in documents){ print(doc.data['booking_date']); } } 点赞 评论 到底啦