如何用pymong对mongodb进行排序

2024-09-27 01:22:36 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图在查询我的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”,但这也不起作用。任何人都能让这个工作,或者这是个错误。


Tags: nameinpydblinefindsortpost
3条回答

你可以试试这个:

db.Account.find().sort("UserName")  
db.Account.find().sort("UserName",pymongo.ASCENDING)   
db.Account.find().sort("UserName",pymongo.DESCENDING)  

这也适用于:

db.Account.find().sort('UserName', -1)
db.Account.find().sort('UserName', 1)

我在代码中使用了这个,如果我在这里做错了,请评论,谢谢。

在pymongo中,以keydirection作为参数。

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

对于多个字段:

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

相关问题 更多 >

    热门问题