除了以前的值之外,如何向文档中的 Firestore 字段添加新值?
我想创建一个函数来检查 Firestore 中的集合是否存在,如果存在,我希望它将用户给定的值添加到集合内文档中存储的值
我的方法:
items.forEach(item=>
User && db.collection("users").doc(Uid).collection("basket").where( "id" , "==" , item.id)
.get().then(function(querySnapshot) {
if (querySnapshot.empty) {
// DO SOMETHING
}
else {
db.collection("users").doc(Uid).collection("basket").where("id" == item.id)
.get().then((docs) => {
docs.forEach((doc) =>{ doc.ref.set({
quantity : firebase.firestore.FieldValue.increment(item.quantity)
})}).then(setLocked(true))
})
}
})
)
但是它显示以下错误:
Unhandled Rejection (TypeError): Cannot read properties of undefined (reading 'ut')
I仔细检查代码,发现错误来自于查询开头的 else
语句,但是没有任何问题
I want to create a function that checks if a collection in Firestore exists and if it exist I want it to add the value given by the user to the value stored in the document inside the collection
My approach:
items.forEach(item=>
User && db.collection("users").doc(Uid).collection("basket").where( "id" , "==" , item.id)
.get().then(function(querySnapshot) {
if (querySnapshot.empty) {
// DO SOMETHING
}
else {
db.collection("users").doc(Uid).collection("basket").where("id" == item.id)
.get().then((docs) => {
docs.forEach((doc) =>{ doc.ref.set({
quantity : firebase.firestore.FieldValue.increment(item.quantity)
})}).then(setLocked(true))
})
}
})
)
however it shows the following error :
Unhandled Rejection (TypeError): Cannot read properties of undefined (reading 'ut')
I doubled check the code and it turns out that the error comes from the beginning of the query the else
statement however there is nothing wrong with it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Stf_F 所评论的,您可以将
merge: true
传递给set
调用:As Stf_F commented, you can either pass
merge: true
to theset
call:or you can use
update
:The
.then(setLocked(true))
makes no sense, sinceforEach
doesn't return a promise.