在Firestore中访问文档内部的集合

时间:2020-06-03 00:42:52

标签: firebase google-cloud-firestore google-cloud-functions

我有一个文档,里面有一个名为relatives的集合。在云函数中,我有onUpdate()这个文件的监听器。更改某些内容后,我想在文档中访问该集合。以及集合relatives中的文档。

这是它的样子:

enter image description here


我尝试过的

exports.UpdateLocations = functions.firestore.document("users/{userID}").onUpdate((change, context) => {
    const userEmail = change.after.data().email;
    const prevLocation = change.before.data().userLocation;
    const currentLocation = change.after.data().userLocation;

    if (prevLocation === currentLocation) return 0;

    if (change.after.data().userType.toString() === "Patient") {
        const userLocation = change.after.data().userLocation;
        const relatives = change.after.data().relatives;

        console.log("User's Current Location: " + userLocation);
        console.log("Relatives : "+relatives );

    }
    return;

});


我想访问亲戚及其文件。这样我就可以搜索和比较字段并有意地对其进行更新。

1 个答案:

答案 0 :(得分:1)

要从DocumentSnapshot获取子集合,必须首先为该快照的文档获取DocumentReference,然后在该快照下找到CollectionReference

在代码中:

change.after.ref.collection("relatives")

在这里:

  1. change.after为您提供了修改后的文档的DocumentSnapshot
  2. change.after.ref然后为您提供该文档的DocumentReference,以便它在数据库中的位置。
  3. change.after.ref.collection("relatives")然后给您CollectionReference至文档的relatives子集合。

因此,从这些子集合中获取数据时,您实际上必须加载该数据,但尚未包含在传递给函数的change对象中。

因此,如果您想为触发该功能的用户加载所有亲属,则应为:

let relativesRef = change.after.ref.collection("relatives");
return relatives.get().then((querySnapshot) => {
  querySnapshot.forEach((relativeDoc) => {
    console.log(doc.id, doc.data().relativeaccount);
  });
});