gpt4 book ai didi

node.js - 如何检查文档是否包含 Cloud Firestore 中的属性?

转载 作者:搜寻专家 更新时间:2023-11-01 00:35:40 25 4
gpt4 key购买 nike

我想知道是否有办法检查某个属性是否存在于 Cloud Firestore 文档中。类似 document.contains("property_name") 的东西,或者如果存在文档属性。

最佳答案

要解决这个问题,您可以像这样简单地检查 DocumentSnapshot 对象是否为空:

var yourRef = db.collection('yourCollection').doc('yourDocument');
var getDoc = yourRef.get()
.then(doc => {
if (!doc.exists) {
console.log('No such document!');
} else {
if(doc.get('yourPropertyName') != null) {
console.log('Document data:', doc.data());
} else {
console.log('yourPropertyName does not exist!');
}
}
})
.catch(err => {
console.log('Error getting document', err);
});

关于node.js - 如何检查文档是否包含 Cloud Firestore 中的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52980666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com