美文网首页
mongoose find and sort

mongoose find and sort

作者: Yvette14 | 来源:发表于2017-02-10 17:54 被阅读0次

    今天是 message 未排序,试着在从 mongo 获得数据的同时给数据排序。

    mongoDB 方法
    // 正序
    db.collection.find().sort({name:1})
    // 倒序
    db.collection.find().sort({name:-1})
    

    试着用这个语法在 mongoose 试,error

    mongoose 方法
    // 正序
    Model.find()
        .sort({name:1})
        .exec(callback);
    // 倒序
    Model.find()
        .sort({name:-1})
        .exec(callback);
    

    相关文章

      网友评论

          本文标题:mongoose find and sort

          本文链接:https://www.haomeiwen.com/subject/kqiyittx.html