谷歌云功能删除“丢失文件”的子集合

时间:2021-03-20 19:18:04

标签: javascript node.js google-cloud-firestore google-cloud-functions firebase-admin

我有一个名为 Posts 的 Firestore 集合,Posts 中的每个文档都可以有一个名为 Post-Likes 和/或 Post-Comments 的子集合。当我删除 Posts 文档时,它不会删除子集合,所以我只剩下对 Firestore 中缺少的文档的引用,如下所示:

enter image description here

我在 Google Cloud Function 中使用以下代码在 Post 集合中查找缺少数据的引用,然后对于每个缺少引用的文档,我想删除子集合 Post-Likes 和 Post-Comments。现在,我只是尝试列出子集合文档,以便我可以删除它们,但出现错误。

function deleteOrphanPostSubCollections() {

    let collectionRef = db.collection('Posts');

    return collectionRef.listDocuments().then(documentRefs => {
       return db.getAll(...documentRefs);
    }).then(documentSnapshots => {
       for (let documentSnapshot of documentSnapshots) {
          if (documentSnapshot.exists) {
            console.log(`Found document with data: ${documentSnapshot.id}`);
          } else {
            console.log(`Found missing document: ${documentSnapshot.id}`);
            return documentSnapshot.getCollections().then(collections => {
              return collections.forEach(collection => {
                console.log('Found subcollection with id:', collection.id);
              });
            });
          }
       }
       return
    });
}

但是,我收到以下错误。请帮我解决这个问题。

enter image description here

1 个答案:

答案 0 :(得分:2)

这是因为 DocumentSnapshot 没有 getCollections() 方法。

如果要列出DocumentSnapshot对应的Document的所有集合,需要使用listCollections()方法,如下:

documentSnapshot.ref.listCollections()
  .then(collections => {
    for (let collection of collections) {
      console.log(`Found subcollection with id: ${collection.id}`);
    }
  });

另外,请注意,如果您在循环中调用异步方法,建议使用 Promise.all() 以便在所有“输入”Promise 都解析后返回一个解析的 Promise。