首页 > 解决方案 > 如何使用python在firestore中批量删除文档

问题描述

我的 Firestore 中有一个名为 XYZ 的集合。其中有 500 个不同字段的文档。我必须使用集合中的 where 子句删除多个文档。

cred = credentials.Certificate('XXXX')
app = firebase_admin.initialize_app(cred)
db = firestore.Client()

batch = db.batch()

doc_ref = db.collection('collection_name').where(u'month', '==', 07).get()

for doc in doc_ref:
      batch.delete(doc)

batch.commit()

我试过了,但最终出现错误

AttributeError: AttributeError: 'DocumentSnapshot' object has no attribute '_document_path'

寻求帮助!

标签: pythonfirebasegoogle-cloud-firestore

解决方案


您将 DocumentSnapshot 对象传递给batch.delete(),这是不允许的。您必须改为传递 DocumentReference 对象,该对象可以在 DocumentSnapshot 的属性中找到。

  batch.delete(doc.reference)

推荐阅读