是否可以从集合中的所有文档中更改特定字段?
在这种情况下,我想更改集合成员中每个文档中的currentStepCount
我认为它应该看起来像这样:
setZero = async (group) => {
return (await this.db.collection("groups").doc(group.id).collection("members").doc()
.update({
"currentStepCount": 0
}
));};
翻译:Verzameling =收藏,Document =文档,Veld =字段
谢谢!