這篇“python中怎么刪除文檔”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“python中怎么刪除文檔”文章吧。
在內(nèi)丘等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需求定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都全網(wǎng)營(yíng)銷(xiāo),外貿(mào)網(wǎng)站制作,內(nèi)丘網(wǎng)站建設(shè)費(fèi)用合理。
1、delete_one()方法刪除文檔。delete_one()需要一個(gè)查詢對(duì)象參數(shù)。它只刪除了第一次出現(xiàn)。
2、在刪除大量文檔時(shí),使用delete_many方法,需要查詢對(duì)象。
如果我們向delete_many({})傳e_many({}),它將刪除集合中的所有文檔。
實(shí)例
# 讓我們 從 Flask 導(dǎo)入Flask import Flask , render_template import os # 導(dǎo)入操作系統(tǒng)模塊 import pymongo MongoDB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {'name':'John'} db.students.delete_one(query) for student in db.students.find(): print(student) # lets check the result if the age is modified for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port)
以上就是關(guān)于“python中怎么刪除文檔”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。