gpt4 book ai didi

javascript - 如何更新 Firebase Firestore 中的动态字段名称?

转载 作者:行者123 更新时间:2023-12-01 23:06:49 25 4
gpt4 key购买 nike

我想在 React Native 中执行类似于以下代码的操作:

await firestore()
.collection('Users')
.doc('ABC')
.update({
this.state.documentName: url,
});

但我需要 this.state.documentName 是动态的,但 VSCode 报告错误,提示 ':' expected.。我错过了什么?

Image of TypeScript annotation

最佳答案

您非常接近,为了计算字段名称,将其括在方括号中:

await firestore()
.collection('Users')
.doc('ABC')
.update({
[this.state.documentName]: url,
});

update()方法还接受键值对中的参数:

await firestore()
.collection('Users')
.doc('ABC')
.update(this.state.documentName, url);

注意:您应该确保使用适当的 security rules如果该信息也包含在他们的用户文档中,则可以防止用户将自己提升为管理员。

关于javascript - 如何更新 Firebase Firestore 中的动态字段名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70737143/

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