如何在子集合中获取所有文档
Firestore.instance
.collection('AddToCart')
.document('loginUsersDmYK00vMfyfJgfeKb8x0nnOa3Jn1')
.collection('Sell').document()
.get()
.then((DocumentSnapshot ds) {
print(ds['ProductName']);
// use ds as a snapshot
});
答案 0 :(得分:2)
尝试一下
Firestore.instance
.collection('AddToCart')
.document('loginUsersDmYK00vMfyfJgfeKb8x0nnOa3Jn1')
.collection('Sell').getDocuments().then((ds){
for(int i=0; i<ds.documents.length;i++){
print("ProductName ==> ${ds.documents[i]['productName']}");
}
});