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

问题描述

我有一个名为 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

解决方法

这是因为 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。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...