在Order Doc(第1个集合)更新“触发器”中,我想读取订购商品(第2个集合)的可用数量,并据此进行更新。 我无法读取订购商品的可用数量。以下是数据库结构。 1st Collection->订单/ OrderCollection / 第二收藏-> ITem / ItemCollection /
exports.onOrderUpdated = functions.firestore.document("Order/{OrderID}").onUpdate((change, context)
...............
path = "ITem/ItemCollection/<ItemDoc>"
let documentRef = admin.firestore().doc(path);
documentRef.get().then(documentSnapshot => {
let data = documentSnapshot.data();
console.log('Document Data', data);
return null;
}).catch(err => {
console.log('Error getting document', err);
});
它不在“ then”子句中,所以不打印 “ console.log('文档数据',数据);”
我想要“ Item / ItemCollection // availableQuantity”值。