如何在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); });