我尝试了这个。很抱歉,我是一个初学者。我无法将要放置的文档放在唯一的位置,因为有多个文档包含userProducts集合。此外,随着用户的增加,新文档将不断生成。在生成的每个新文档中,都创建了一个名为userProducts的子集合。还有其他方法吗?
Future getProducts() async {
var firestore = Firestore.instance;
QuerySnapshot snapshot = await firestore.collection('products'). documents (doc id).collection('userProducts').getDocuments();
// .orderBy('timestamp', descending: true)
return snapshot.documents;