firebase firestoreで後からSubCollectionにfieldを追加したくなったときの対処。
firebaseで後からfieldを追加するとき
例) サブコレクションとして保存しているcommentコレクションの全てのドキュメントに
status: 1
を追加したい。
var commentsSn = await firebase.firestore.collectionGroup("comments").get(); //snapshot取得
var commentsPath = commentsSn.docs.map(e => e.ref.path) //参照するパスを取得
commentsPath.forEach(path => { //全てのパスに対して status:1 をセット
firebase.firestore.doc(path).set({
status:1
},{
merge: true
})
})
optionで merge: true を付けておかないと他のフィールドが消えるのでご注意ください。
Author And Source
この問題について(firebase firestoreで後からSubCollectionにfieldを追加したくなったときの対処。), 我々は、より多くの情報をここで見つけました https://qiita.com/ito123/items/8d39dbd80b74c9ac3d0d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .