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'를 배치해야한다고 말하는 다른 곳의 링크를 찾았지만 작동하지 않습니다. 다른 사람이 이것을 작동 시키거나 버그입니다.
.sort([("field1",pymongo.ASCENDING), ("field2",pymongo.DESCENDING)])
여러 필드를 정렬합니다.