85.Mongoose指南 - Schema
转自:https://www.bbsmax.com/A/pRdBnKpPdn/
定义schema
用mongoose的第一件事情就应该是定义schema. schema是什么呢? 它类似于关系数据库的表结构.
|
1
2
3
4
5
6
7
8
9
10
|
var mongoose = require('mongoose');var schema = mongoose.Schema;var blogSchema = new Schema({ titile: String, body: String, comments: [{body: String, date: Date}], date: {type: Date, default: Date.now}, hidden:Boolen}); |
创建model
格式是mongoose.model(modelName, schema);
|
1
|
var BlogModel = mongoose.model('Blog', blogSchema); |
实例化方法
model的实例是document. document有许多内置的实例方法. 我们可以为document定义自己的实例方法
|
1
2
3
4
5
6
|
var animalSchema = new Schema({name: String, type: String});//定义实例方法animalSchema.methods.findSimilarType = function(cb){ return this.model('Animal').find({type: this.type}, cb);} |
现在animal实例有findSimilarTypes方法了
|
1
2
3
4
5
6
|
var Animal = mongoose.model('Animal', animalSchema);var dog = new Animal({type: 'dog'});dog.findSimilarTypes(function(err, dogs){ console.log(dogs);}); |
Model静态方法
还可以给Model添加静态方法
|
1
2
3
4
5
6
7
8
9
10
|
animalSchema.statics.findByName = function(name, cb){ this.find({name: new RegExp(name, 'i')}, cb);}var Animal = mongoose.model('Animal', animalSchema);Animal.findByName('fido', function(err, animals){ console.log(animals);}); |
索引
索引分为field级别和schema级别. 如果使用复合索引那么必须使用schema索引
|
1
2
3
4
5
6
7
|
var animalSchema = new Schema({ name: String, type: String, tags: {type: [String], index:true} // field level});animalSchema.index({name:1, type:-1}); // schema level |
当应用启动的时候, mongoose会自动为你的schema调用ensureIndex确保生成索引. 开发环境用这个很好, 但是建议在生产环境不要使用这个.使用下面的方法禁用ensureIndex
|
1
2
3
|
animalSchema.set('autoIndex', false);//ornew Schema({}, {autoIndex: false}); |
Virtual
virtual是document的属性 你可以get,set他们但是不持续化到MongoDB. virtual属性get非常有用可以格式化或者合并字段, set可以分解一个字段到多个字段并持续化到数据库
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
var personSchema = new Schema({ name: { first: String, last: String }});var Person = mongoose.model('Person', personSchema);var bad = new Person({ name: {first: 'Walter', last: 'White'}}); |
如果你想获取bad的全名 你需要这样做
|
1
|
console.log(bad.name.first + ' ' + bad.name.last); |
或者我们可以在personSchema中定义virtual getter. 这样我们就不需要在每个要用fullname的地方拼接字符串了
|
1
2
3
|
personSchema.virtual('name.full').get(function(){ return this.name.first + ' ' + this.name.last; ); |
现在我么可以使用 name.full虚属性了
|
1
|
console.log(bad.name.full); |
我们还可以通过设置this.name.full来设置this.name.first和this.name.last
|
1
|
bad.name.full = "Breaking Bad"; |
|
1
2
3
4
5
6
7
8
9
10
11
|
personSchema.virtual('name.full').set(function(name){ var split = name.split(' '); this.name.first = split[0]; this.name.last = split[1];});mad.name.full = "Breaking Bad";console.log(mad.name.first); // Breakingconsole.log(mad.name.last); // Bad |
Options
Schema有一些配置选项, 可以如下面一样设置
|
1
2
3
4
5
|
new Schema({}, options);//orvar xxSchema = new Schema({});xxSchema.set(option, value); |
option:autoIndex
应用启动的时候Mongoose会自动为每一个schema发送一个ensureIndex命令。 如果你想禁止自动创建index要自己手动来创建的话 你可以设置autoIndex为false
|
1
2
3
4
|
var xxSchema = new Schema({}, { autoIndex: false });var Clock = mongoose.model('Clock', xxSchema);Clock.ensureIndexs(callback); |
option:bufferCommands
todo
|
1
|
var schema = new Schema({}, { bufferCommands: false }); |
option:capped
todo
....
85.Mongoose指南 - Schema的更多相关文章
- [译]Mongoose指南 - Schema
定义schema 用mongoose的第一件事情就应该是定义schema. schema是什么呢? 它类似于关系数据库的表结构. var mongoose = require('mongoose'); ...
- [译]Mongoose指南 - Population
MongoDB没有join, 但是有的时候我们需要引用其它collection的documents, 这个时候就需要populate了. 我们可以populate单个document, 多个docum ...
- [译]Mongoose指南 - 验证
开始前记住下面几点 Validation定义在SchemaType中 Validation是一个内部的中间件 当document要save前会发生验证 验证不会发生在空值上 除非对应的字段加上了 re ...
- [译]Mongoose指南 - Model
编译你的第一个model var xxSchema = new Schema({name: 'string', size: 'string'}); var Tank = mongoose.model( ...
- mongoose 建立schema 和model
在node中使用MongoDB很多情况下,都是使用mongoose的,所以这集来介绍一下 安装 yarn add mongoose 连接 const mongoose = require(" ...
- [译]Mongoose指南 - Connection
使用mongoose.connect()方法创建连接 mongoose.conect('mongodb://localhost/myapp'); 上面的代码是通过默认端口27017链接到mongodb ...
- [译]Mongoose指南 - Plugin
Schema支持插件, 这样你就可以扩展一些额功能了 下面的例子是当document save的时候自定更新最后修改日期的出插件 // lastMod.js module.exports = expo ...
- [译]Mongoose指南 - 中间件
中间件是一些函数, 当document发生init, validate, save和remove方法的时候中间件发生. 中间件都是document级别的不是model级别的. 下面讲讲两种中间件pre ...
- [译]Mongoose指南 - 查询
查询有带callback和不带callback两种方式 所有mongoose的callback都是这种格式: callback(err, result) var Person = mongoose.m ...
随机推荐
- sqlite学习笔记11:C语言中使用sqlite之删除记录
最后一节,这里记录下怎样删除数据. 前面全部的代码都继承在这里了,在Ubuntu14.04和Mac10.9上亲測通过. #include <stdio.h> #include <st ...
- UIScrollView加入控件,控件距离顶部始终有间距的问题
今天.特别郁闷.自己定义了一个UIScrollView,然后在它里面加入控件,如UIButton *button = [[UIButton alloc] initWithFrame:CGRectMak ...
- nodeJS npm grunt grunt-cli
1.安装好nodeJS后 ,一般都会把npm也安装好的.nodeJs集成npm的,可通过在cmd 分别运行 node -v和 npm -v来查看他们的版本,假设显示可说明可继续以下的操作 2.想安装g ...
- leetcode 题解 || Longest Common Prefix 问题
problem: Write a function to find the longest common prefix string amongst an array of strings. 寻找 0 ...
- world 替换+正则表达式命令
打开替换命令,点击“更多”,勾选上“通配符”,正则表达式才会起作用
- 88.NODE.JS加密模块CRYPTO常用方法介绍
转自:https://www.jb51.net/article/50668.htm 使用require('crypto')调用加密模块. 加密模块需要底层系统提供OpenSSL的支持.它提供了一种安全 ...
- JS基本功 | JavaScript专题之数组 - 方法总结
Array.map() 1. map() 遍历数组 语法: let new_array = arr.map(function callback(currentValue, index, array ...
- SpringBoot(一) 基础入门
SpringBoot简要 简化Spring应用开发的一个框架: 整个Spring技术栈的一个大整合: J2EE开发的一站式解决方案: 自动配置:针对很多Spring应用程序常见的应用功能,Spring ...
- Win10运行在哪里,Win10的运行怎么打开
方法/步骤 1 唯一的方法是同时按下WIN+X键组合,如下图所示 步骤阅读 2 在弹出菜单可以看到运行了!如下图所示 步骤阅读 3 运行对话框出来了,如下图所示 步骤阅读 4 还有一个方法,点击桌面左 ...
- 【原创】RPM安装软件时解决依赖性问题(自动解决依赖型)
满足以下3个条件才能自动解决依赖性: 1.使用rpmdb -redhat(在安装时会自动弹出依赖性错误) 2.所有互相依赖的软件都必须在同一个目录下面. 3.调用-aid参数.