首页 > 语言 > JavaScript > 正文

详解Nodejs mongoose

2024-05-06 15:33:29
字体:
来源:转载
供稿:网友

前言

Mongoose 是在nodejs环境下,对mongodb进行便捷操作的对象模型工具。本文介绍解(翻)密(译)Mongoose插件。

Schema

开始我们就要讲到Schema,一个Schema对应的是mongodb的collection(相当于SQL table),并且定义其结构。

var mongoose = require('mongoose');var Schema = mongoose.Schema;//定义一个博客结构var blogSchema = new Schema({  title: String,  author: String,  body:  String,  comments: [{ body: String, date: Date }],  date: { type: Date, default: Date.now },  hidden: Boolean,  meta: {   votes: Number,   favs: Number  } });

Schema可用Type:

.String (ex: 'ABCD')

.Number (ex: 123)

.Date (ex: new Date)

.Buffer (ex: new Buffer(0))

.Boolean (ex: false)

.Schema.Types.Mixed (ex: {any:{thing:'ok'}})

.Schema.Types.ObjectId (ex:new mongoose.Types.ObjectID)

.Array (ex:[1,2,3])

.Schema.Types.Decimal128

.Map (ex: new Map([['key','value']]))

我们可以通过一段代码,将Schema转化成Model: mongoose.model(modelName,Schema)

var Blog = mongoose.model('Blog', blogSchema);

赋予Schema方法,当方法转成Model的时候,会将方法给予Model

//创建一个变量,Schemavar animalSchema = new Schema({ name: String, type: String });//将方法赋予这个SchemaanimalSchema.methods.findSimilarTypes = function(cb) {  return this.model('Animal').find({ type: this.type }, cb);};var Animal = mongoose.model('Animal', animalSchema);var dog = new Animal({ type: 'dog' });dog.findSimilarTypes(function(err, dogs) {  console.log(dogs); // woof});

在Schema方法里,不要使用箭头函数,它会重新绑定this。

赋予Schema static (静态)方法,我们继续使用上面的例子:

//赋予静态方法,可以再Model不实例化的情况下调用animalSchema.statics.findByName = function(name, cb) {  return this.find({ name: new RegExp(name, 'i') }, cb);};var Animal = mongoose.model('Animal', animalSchema);Animal.findByName('fido', function(err, animals) {  console.log(animals);});

Schema索引 index

MongoDB支持二级索引,在mongoose,我们可以将索引定在Schema层。

var animalSchema = new Schema({  name: String,  type: String,  tags: { type: [String], index: true } // 声明在字段层});animalSchema.index({ name: 1, type: -1 }); // 声明在

使用index(二级索引)的时候记得要disable Mongodb 的 autoIndex。

mongoose.connect('mongodb://user:pass@localhost:port/database', { autoIndex: false }); // 或者mongoose.createConnection('mongodb://user:pass@localhost:port/database', { autoIndex: false }); // 或者animalSchema.set('autoIndex', false); // 或者new Schema({..}, { autoIndex: false });

虚拟化

// 声明一个Schemavar personSchema = new Schema({  name: {   first: String,   last: String  }});// 转成Modelvar Person = mongoose.model('Person', personSchema);// 实例化Modelvar axl = new Person({  name: { first: 'Axl', last: 'Rose' }});//1.如果我们想要打印Person的姓名console.log(axl.name.first + ' ' + axl.name.last); // Axl Rose//2.使用虚拟化,我们声明一个虚拟字段,然后通过get给其赋值personSchema.virtual('fullName').get(function () { return this.name.first + ' ' + this.name.last;});console.log(axl.fullName); // Axl Rose            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选