时间:2021-05-25
前言
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别名
var personSchema = new Schema({ n: { type: String, // 给予 n 别名 name,n与name指向同一个值 alias: 'name' }});// 修改name同样修改n,方向一样var person = new Person({ name: 'Val' });console.log(person); // { n: 'Val' }console.log(person.toObject({ virtuals: true })); // { n: 'Val', name: 'Val' }console.log(person.name); // "Val"person.name = 'Not Val';console.log(person); // { n: 'Not Val' }Model & Documents增
var Tank = mongoose.model('Tank', yourSchema);var small = new Tank({ size: 'small' });//使用save的方法small.save(function (err) { if (err) return handleError(err); // saved!});// 或者 使用createTank.create({ size: 'small' }, function (err, small) { if (err) return handleError(err); // saved!});// 或者 使用insertMany/insertOneTank.insertMany([{ size: 'small' }], function(err) {});删
//deleteOne 或者 deleteManyTank.deleteOne({ size: 'large' }, function (err) { if (err) return handleError(err); // 只删掉符合项的第一条});改
Tank.updateOne({ size: 'large' }, { name: 'T-90' }, function(err, res) {});// findOneAndUpdate 查找出相应的数据,修改,并返还给程序查
// 查提供了多种方式,find,findById,findOne,和whereTank.find({ size: 'small' }).where('createdDate').gt(oneYearAgo).exec(callback);总结
以上所述是小编给大家介绍的Nodejs mongoose的相关知识,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了nodejs+mongodbaggregate级联查询操作。分享给大家供大家参考,具体如下:最近完成了一个nodejs+mongoose的项目,碰
Mongoose是什么?Mongoose是MongoDB的一个对象模型工具,封装了许多MongoDB对文档的的增删改查等常用方法,让NodeJS操作Mongod
本文实例讲述了express使用Mongoose连接MongoDB操作。分享给大家供大家参考,具体如下:为何要学Mongoose?Mongoose是MongoD
一、users_model.js功能:定义用户对象模型varmongoose=require('mongoose'),Schema=mongoose.Schem
一,先定义了一个goods(商品)的modelsvarmongoose=require('mongoose');varSchema=mongoose.Schem