我创建了一个firestore
的{{1}}集合,并且在其中有一个带有该posts
的文档,它具有一个数组:
这是更新名称的功能
userId: sycLjvCgroPpI5Os8kjJUXhEjv52_9de5e9d7
那么如何在updateName ({commit, state}, data) {
let name = data.name
fb.usersCollection.doc(state.currentUser.uid).update({
name
}).then(user => {
// update all posts by user to reflect new name
fb.postsCollection.where('userId', '==', state.currentUser.uid).get().then(docs => {
docs.forEach(doc => {
fb.postsCollection.doc(doc.id).update({
userName: name
})
})
})
}
}
的{{1}}数组内使用userId
?