const docRef = firestore.collection("orders").document("")
我需要获取文件" 147OiRKFYKA3WAo5d5mk"如果字段值为Admno:" 11.11.1111"
这是我的数据库
谢谢你的帮助。
答案 0 :(得分:1)
official Firestore documentation:
中提到了这种情况db.collection("orders").where("Admno", "==", "11.11.1111")
.get()
.then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
console.log(doc.id, " => ", doc.data()); //here's your doc
});
})
.catch(function(error) {
console.log("Error getting documents: ", error);
});
如果您开始使用Firestore,我强烈建议您阅读the documentation。