小编典典

如何使用 pymongo 对 mongodb 进行排序

all

我在查询我的 mongoDB 时尝试使用排序功能,但它失败了。相同的查询在 MongoDB 控制台中有效,但在此处无效。代码如下:

import pymongo

from  pymongo import Connection
connection = Connection()
db = connection.myDB
print db.posts.count()
for post in db.posts.find({}, {'entities.user_mentions.screen_name':1}).sort({u'entities.user_mentions.screen_name':1}):
    print post

我得到的错误如下:

Traceback (most recent call last):
  File "find_ow.py", line 7, in <module>
    for post in db.posts.find({}, {'entities.user_mentions.screen_name':1}).sort({'entities.user_mentions.screen_name':1},1):
  File "/Library/Python/2.6/site-packages/pymongo-2.0.1-py2.6-macosx-10.6-universal.egg/pymongo/cursor.py", line 430, in sort
  File "/Library/Python/2.6/site-packages/pymongo-2.0.1-py2.6-macosx-10.6-universal.egg/pymongo/helpers.py", line 67, in _index_document
TypeError: first item in each key pair must be a string

我在其他地方找到了一个链接,上面说如果使用 pymongo,我需要在密钥前面放置一个“u”,但这也不起作用。其他任何人都能让它工作,或者这是一个错误。


阅读 62

收藏
2022-07-07

共1个答案

小编典典

.sort(),在 pymongo 中,将keydirection作为参数。

所以如果你想排序,比方说,id那么你应该.sort("_id", 1)

对于多个字段:

.sort([("field1", pymongo.ASCENDING), ("field2", pymongo.DESCENDING)])
2022-07-07