Mongodb查询排序操作
1.通过1控制正序显示
db.teacher.find().sort({"_id":1})
2.通过-1控制倒序显示
db.teacher.find().sort({"_id":-1})