标签: google-cloud-firestore
在firestore中,我可以在Document中将Field和Collection放在一起。假设我想只获取文档的字段。我将通过以下方式进行。
this.afs.collection('coll1').document('document1').ref.get().then(x=>{ colsole.log(x.data()); });
现在x.data()只显示字段,而不是正确的集合。但在后台是它下载文档的所有数据。由于我不需要所有数据,因此将使用额外的数据。
x.data()