📌  相关文章
📜  从集合flutter firestore中删除所有文档-任何代码示例

📅  最后修改于: 2022-03-11 15:00:29.540000             🧑  作者: Mango

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