pymongo问题集合

1. 问题:

 

使用sort排序,代码如下:

db.test.find().sort({"name" : 1, "age" : 1})  

遇到如下异常:

TypeError: if no direction is specified, key_or_list must be an instance of list  

   解决方法:

db.test.find().sort([("name", 1), ("age" , 1)])  

原因:在python中只能使用列表进行排序,不能使用字典

上一篇:Python OOP:如何与所有类共享MongoDB连接


下一篇:python – MongoClient在fork之前打开.创建MongoClient