迭代集合并尝试获取文档中的引用字段 .get() 不起作用

时间:2021-02-05 11:52:49

标签: javascript firebase google-cloud-firestore redux-firestore

我正在尝试获取一个集合,然后迭代其文档。在每个文档中,都有一个用于另一个集合文档的引用字段。通常,如果我查询它,则没有问题,但迭代会产生问题

在迭代组织成员时遵循我想要获得的字段

enter image description here

 const result = await firestore.collection("organization-members").get();
      result.docs.forEach((doc) => {  // or result.forEach
        const data = doc.data();
        const organization = data.organization;
     
        const orgData = await organization.get() // But this says that organization.get() is not a function
      });

但是,如果我硬查询,那么它工作正常

const snap = await firestore
      .doc("organization-members/BOcSNLR4bt8i0Ay4aAr7")
      .get();
    const orgSnap = await snap.data().organization.get();
    console.log(orgSnap.data());

对象也不同

上层日志是我硬查询时的日志,下层日志是我遍历集合文档时的

enter image description here

我做错了什么

1 个答案:

答案 0 :(得分:1)

对于有类似问题的其他人,此答案可能对您有所帮助

所以首先我的代码中有一个错误,但这给了我另一个答案

错误是我忘记在 forEach 函数中添加异步

应该是这样的

 const result = await firestore.collection("organization-members").get();
  result.docs.forEach(async (doc) => {  // or result.forEach
    const data = doc.data();
    const organization = data.organization;
 
    const orgData = await organization.get() // But this says that organization.get() is not a function
  });

但这不是正确的方法

显然 async/await 在 forEach 循环中无法正常工作我不知道这背后的原因我确实联系了 firebase 团队并且那里的代表说了同样的话所以最好的方法应该是使用 for 循环< /strong>

例如

for(doc of result.docs)

这将始终正常工作