1、delete_one()删除文档的方法。delete_one()需要查询对象参数。它只删除了第一次出现。
2、使用delete_many方法删除大量文档时,需要查询对象。
如果我们去delete_many({})传E__many({}),它将删除集合中的所有文档。
实例
#让我们 Flask导入FlaskimportFlask,render_template importos#导入操作系统模块 importpymongo MONGODB_URI='mongodb+srv://asabeneh:your_password_goes_here@30daysofpythonthon-twxkr.mongodb.net/test?retryWrites=true&w=majority' client=pymongo.MongoClient(MONGODB_URI) db=client['thirty_days_of_python']#accessingthedatabase query={'name':'John'} db.students.delete_one(query) forstudentindb.students.find(): print(student) #letschecktheresultiftheageismodified forstudentindb.students.find(): print(student) app=Flask(__name__) if__name__='__main__': #fordeploymentweusetheenviron #tomakeitworkforbothproductionanddevelopment port=int(os.environ.get("PORT",5000)) app.run(debug=True,host='0.0.0.0',port=port)
以上是python中删除文档的方法,希望对大家有所帮助。更多Python学习指导:python基础教程
(推荐操作系统:windows7系统Python 3.9.1,DELL G3电脑。)