📜  如何通过 feild 删除文档 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:17.785000             🧑  作者: Mango

代码示例1
//Dart
firestore.collection('messages').getDocuments().then((snapshot) {
  for (DocumentSnapshot ds in snapshot.documents){
    ds.reference.delete();
  });
});