程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python3 pymongo 使用 count 報警告解決辦法

編輯:Python

AttributeError:‘Cursor’ object has no attribute ‘count’

​ 在統計查詢結果包含多少條數據的時候,一開始使用的是find().count()進行統計,代碼如下:

import pymongo
client = pymongo.MongoClient(host='localhost', port=27017)
db = client.test
collection = db.students
count = collection.find().count()
print(count)

運行結果如下:

在網上查找資料發現,count方法已經被新版本淘汰了,我們可以使用新的統計方法estimated_document_count()

db_count = cursor.estimated_document_count()

如果是帶條件的查詢統計就需要使用count_documents

db_count = cursor.count_documents({
'dt': handle_date})

後面我將count()修改為estimated_document_count(),運行之後,發現還是報錯

後來找到了原因,發現把find()方法去掉就可以了

import pymongo
client = pymongo.MongoClient(host='localhost', port=27017)
db = client.test
collection = db.students
count = collection.estimated_document_count()
print(count)

運行結果如下:

這樣問題就解決了。。。


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved