开发者问题收集

Firebase 集合

2020-07-16
108

我在 firebase 中有这个数据库: firebase

然后,我在 javascript 中有这个代码:

firebase
      .firestore()
      .collection('devices')
      .doc(device.id)
      .collection('pings')
      .get()
      .then(doc => {
        doc.forEach(d => console.log(d))
      })

问题是:我的控制台日志显示了这个,而不是显示 ping 集合中的每个对象: consolelog

你们有人知道发生了什么以及如何解决它吗?

1个回答

对从 firestore 获取的文档使用数据方法

firebase
      .firestore()
      .collection('devices')
      .doc(device.id)
      .collection('pings')
      .get()
      .then(doc => {
        doc.docs.forEach(d => console.log(d.data())
      })
Shaurya Vardhan Singh
2020-07-16