繁体   English   中英

如何使用python批量删除firestore中的文档

[英]how to delete documents in batch in firestore using python

我的 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'

寻求帮助!

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

  batch.delete(doc.reference)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM