Skip to content

MongoDB使用

liaofeiyin edited this page May 27, 2017 · 1 revision

数据倒序

ArticleSchema.statics = {
    fetch(cb) {
        return this.find({})
                .sort({'_id':-1})
                .exec(cb);
    }
}
Clone this wiki locally