使用Pymongo保留mongo文档的键值顺序

时间:2015-08-10 21:36:56

标签: python mongodb pymongo

尝试使用pymongo从mongodb读取文档,并保留订单键值,如link中所述。

from bson import CodecOptions, SON
opts = CodecOptions(document_class=SON)
collect = db.get_collection(type)
coll = collect.with_options(codec_options=opts)
cursor = coll.find({'abc': 'xyz'})

但是仍然没有在find()查询的结果中维护键值顺序。有任何建议/解决方法可以解决这个问题吗?

编辑:基本上我的意思是我从mongo find查询得到的文件应该是这样的。不应该改变顺序。

1 个答案:

答案 0 :(得分:0)

在pymongo(3.0.3)中我和我一起工作得很好:

  • 可能你在插入文件时没有使用过SON吗?
  • 提示:您可以按照here所述在MongoClient中将SON指定为document_class,然后将所有文档作为SON对象检索
from bson import CodecOptions, SON
docson= SON([(j,i) for i,j in enumerate('abcdefghijklmnopqrstuvwxyz')])
docson
SON([('a', 0), ('b', 1), ('c', 2), ('d', 3), ('e', 4), ('f', 5), ('g', 6), ('h', 7), ('i', 8), ('j', 9), ('k', 10), ('l', 11), ('m', 12), ('n', 13), ('o', 14), ('p', 15), ('q', 16), ('r', 17), ('s', 18), ('t', 19), ('u', 20), ('v', 21), ('w', 22), ('x', 23), ('y', 24), ('z', 25)])
db.test.insert_one(docson)
opts = CodecOptions(document_class=SON)
colson = db.test.with_options(codec_options=opts)
colson.find_one({'a': 0})
SON([(u'_id', ObjectId('55c92bc2993000171429eff6')), (u'a', 0), (u'b', 1), (u'c', 2), (u'd', 3), (u'e', 4), (u'f', 5), (u'g', 6), (u'h', 7), (u'i', 8), (u'j', 9), (u'k', 10), (u'l', 11), (u'm', 12), (u'n', 13), (u'o', 14), (u'p', 15), (u'q', 16), (u'r', 17), (u's', 18), (u't', 19), (u'u', 20), (u'v', 21), (u'w', 22), (u'x', 23), (u'y', 24), (u'z', 25)])