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中只能使用列表进行排序,不能使用字典
2024-02-25 17:01:09
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中只能使用列表进行排序,不能使用字典