成功将OrderedDict对象插入MongoHQ后,我尝试通过PyMongo的collection.find_one()命令查询相同的OrderedDictionary。这失败了,键的顺序丢失了。 dictonary成为一个普通的dictonary。
我的代码如下所示:
import collections
import pymongo
test = collections.OrderedDict()
test.update({'test1': 1})
test.update({'test2': 2})
test.update({'test3': 3})
test.update({'test4': 4})
test.update({'test5': 5})
test
>>>OrderedDict([('test1', 1), ('test2', 2), ('test3', 3), ('test4', 4), ('test5', 5
)])
db_conn = pymongo.Connection('mongodb://*:*@*.mongohq.com:*/testDatabase')
db_conn.testDatabase['testCollection'].insert(test)
test_new = db_conn.testDatabase['testCollection'].find_one()
print test_new
>>> {u'test1': 1, u'test3': 3, u'test2': 2, u'test5': 5, u'test4': 4, u'_id': Object
Id('52cc777b92c49c146cb5e3db')}
你可以帮帮我吗?非常感谢。
答案 0 :(得分:0)
也许你想尝试
test_new = db_conn.testDatabase ['testCollection']。find_one(as_class = collections.OrderedDict)