firestoreへのドキュメント追加で自動生成されたIDを受け取る
概要
Cloud Firestoreにドキュメントを追加したときに自動生成されるIDを受け取る方法
困ったこと
公式ドキュメントのサンプルでは、ドキュメントを追加したあとにidをconsoleに出力するだけで、そのidをその後の処理に使う感じがなかった。
// Add a new document with a generated id.
db.collection("cities").add({
name: "Tokyo",
country: "Japan"
})
.then(function(docRef) {
console.log("Document written with ID: ", docRef.id);
})
.catch(function(error) {
console.error("Error adding document: ", error);
});
自分のes6の理解が薄いためか無理くり外部変数に突っ込もうとしたが動かない(vuejsのdataに入れたかった)
.then(function(docRef) {
console.log("Document written with ID: ", docRef.id);
this.docId = docRef.id
})
エラーになる
firestore Error adding document: TypeError: Cannot set property 'docId' of undefined
やり方
メソッドをasyncで定義して、awaitで待ち構えるとできたっ.
async add() {
let docRef = await db.collection("cities").add({
name: "Tokyo",
country: "Japan"
})
this.docId = docRef.id
}
Author And Source
この問題について(firestoreへのドキュメント追加で自動生成されたIDを受け取る), 我々は、より多くの情報をここで見つけました https://qiita.com/gosshys/items/5244793b085ddf83dcc0著者帰属:元の著者の情報は、元の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 .