标签: Mongoose

3 篇文章

thumbnail
Mongoose 分页
Mongoose 分页查询: 在Schema中创建静态方法: // 分页 CategorieSchema.statics = {     fetch(id, cb) {         if (id) {             return this.find({'_id': {"$lt": id}})                 .limi…
thumbnail
Mongoose二级连表查询
首先定义两个Schema,然后 model ; DB.js // 分类 let CategorieSchema = new mongoose.Schema({     "name" : String,     "img" : String,     "date": Date }); CategorieSchema.index({ "date": 1…