使用get()后如何在html中显示Firestore集合文档的数据

时间:2019-12-18 06:21:54

标签: angular google-cloud-firestore angular7

this.afs.collection('users')
.doc(this.userId)
.collection('attendance')
.get().subscribe(function(querySnapshot) {
  querySnapshot.forEach(function(doc) {

      console.log(doc.id, " => ",doc.data());

我想使用html显示出勤记录的数据,如何显示?

0 个答案:

没有答案