为了账号安全,请及时绑定邮箱和手机立即绑定

Angularfire 文档参考集合

Angularfire 文档参考集合

临摹微笑 2022-01-07 18:48:31
  return this.orderCollection.snapshotChanges().pipe(      map(actions =>        actions.map(a => {          const data = a.payload.doc.data() as Order;          const id = a.payload.doc.id;          return { id, ...data };        })      )    );  }现在如何在 angularfire2 中获取文档参考数据?
查看完整描述

1 回答

?
犯罪嫌疑人X

TA贡献2080条经验 获得超4个赞

您将需要单独加载引用的文档。所以像:


customerRef = a.payload.doc.get("customerId");

customerRef.get().then((doc) => {

  console.log(doc.data());

})


查看完整回答
反对 回复 2022-01-07
  • 1 回答
  • 0 关注
  • 129 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信