web-dev-qa-db-ja.com

Firestoreは、ID = angular 2でドキュメントを取得します

Google FirestoreでIDでドキュメントを取得する方法は? get()メソッドはありますか?私が検索したが、自分に合った適切な答えが見つからなかったからです:(

更新:this.itemscollection.doc(id).get()は機能しませんでした

14
Kek Testerov

このコードを試してください

this.itemscollection.doc(id).ref.get().then(function(doc) {
  if (doc.exists) {
    console.log("Document data:", doc.data());
  } else {
    console.log("No such document!");
  }
}).catch(function(error) {
  console.log("Error getting document:", error);
});
25
Hareesh

firestoreでangular 2(パッケージangularFire2を使用する場合)で成功するための鍵は、公式ドキュメント内のすべてのfirestoreメソッドが「get」「set」 updateは 'ref'メソッドの子です例insted

 firestore - this.itemscollection.doc(id).get() 
 angularfirestore2 - this.itemscollection.doc(id).ref.get()
-------------------------------------
 firestore - this.itemscollection.doc(id).set()
 angularfirestore2 - this.itemscollection.doc(id).ref.set()
4