【发布时间】:2021-06-17 21:17:21
【问题描述】:
我有一个名为 Posts 的 Firestore 集合,Posts 中的每个文档都可以有一个名为 Post-Likes 和/或 Post-Comments 的子集合。当我删除 Posts 文档时,它不会删除子集合,因此我留下了对 Firestore 中缺失文档的引用,如下所示:
我在我的 Google Cloud 函数中使用以下代码在 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
});
}
但是,我收到以下错误。请帮我解决这个问题。
【问题讨论】:
标签: javascript node.js google-cloud-firestore google-cloud-functions firebase-admin