firestore.collection("products").where("Product", "==", inputx)
.get()
.then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
console.log(doc.id, " => ", doc.data());
});
})
这是我的数据库
答案 0 :(得分:0)
这很容易,只需doc.data().cost
。
答案 1 :(得分:-1)
您正在寻找DocumentSnapshot上的get(fieldPath)
方法:
doc.get('Cost');