我正在尝试从数据库层次结构db.collection / doc / collection /中获取数据
我需要从“产品”集合中获取数据
通过使用此代码段,我已经可以过滤出正确的文档。 仍然没有设法从下一个集合中获取任何数据。
db.collection('deliveryservice').where('owner_id', '==', user.uid).collection('product').get().then((snapshot) => {
snapshot.docs.forEach(doc => {
答案 0 :(得分:1)
请尝试通过以下方式从您的product
集合中检索数据。
var docRef = db.collection("deliveryservice").doc(user.uid).collection('product');
docRef.get().then((snapshot) => {
snapshot.docs.forEach(doc => {
}
}).catch(function(error) {
console.log("Error getting document:", error);
})