从 Firestore Flutter 中删除文档及其子集合

时间:2021-07-12 17:18:18

标签: firebase flutter dart google-cloud-firestore

我正在尝试删除帖子及其所有子集合。使用下面的代码时,我只能删除帖子中的所有字段,但不能删除它的子集合。

FirebaseFirestore.instance.collection('posts').doc(postId).get().then((doc) {
      if (doc.exists) {
        doc.reference.delete();
      }

我应该改变什么才能使它工作?非常感谢!

0 个答案:

没有答案
相关问题