Firestore通过id在角度2上获取文档

前端之家收集整理的这篇文章主要介绍了Firestore通过id在角度2上获取文档前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在google firestore中通过id获取文档?有一些get()方法吗?因为我搜索但没有找到适合我的正确答案:(

UPD:this.itemscollection.doc(id).get()没有为我工作

试试这个代码
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);
  });

猜你在找的Angularjs相关文章