获取Cloud Firestore数据库集合

时间:2019-08-19 11:50:34

标签: javascript firebase web google-cloud-firestore

我正在尝试从数据库层次结构db.collection / doc / collection /中获取数据 !https://imgur.com/a/wwOQiXV

我需要从“产品”集合中获取数据

通过使用此代码段,我已经可以过滤出正确的文档。 仍然没有设法从下一个集合中获取任何数据。

db.collection('deliveryservice').where('owner_id', '==', user.uid).collection('product').get().then((snapshot) => {
        snapshot.docs.forEach(doc => { 

1 个答案:

答案 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);
})