##1.Mongoose第三方包
- 使用Node.js操作MongoDB数据库需要依赖Node.js第三方包mongoose
- 使用 npm install mongoose命令下载
###1.1 启动MongoDB
在命令行工具中执行 net start mongoDB命令即可启动MongoDB,否则MongoDB将无法连接
###1.2 数据库连接
使用mongoose提供的connect方法即可连接数据库
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/playground',{useNewUrlParser: true})
.then(() => console.log('数据库连接成功'))
.catch(err => console.log('数据库连接失败',err));
###1.3 创建数据库
在mongodb中不需要显式创建数据库,如果正在使用的数据库不存在,mongodb会自动创建
##2.MongoDB增删改查操作
###2.1 创建集合
创建集合分为两步,一步是对集合设定规则,二是创建集合,创建mongoose.Schema构造函数的实例即可创建集合
//设定集合规则
const courseSchema = new mongoose.Schema({
name: String,
author: String,
isPublished: Boolean
})
//创建集合并引用规则
const Course = mongoose.model('Course',courseSchema);//courses
###2.1 创建文档
创建文档实际上就是向集合中插入数据
- 创建集合实例
- 调用实例对象下的save方法将数据保存到数据库中
//创建集合实例
const course = new Course({
name: "Node",
author: "zhangsan",
isPublished: true
});
//调用实例对象下的save方法将数据保存到数据库中
course.save()
另一种方式
Course.create({name: 'node',author: 'zhangsan',isPublished: true}, (err,doc) => {
//错误的对象
console.log(err);
//当前插入的文档
console.log(doc);
});
异步函数的方式
Course.create({name: 'node',author: 'zhangsan',isPublished: true})
.then( doc => console.log(doc))
.catch( err => console.log(err))
###2.3 mongoDB数据库导入数据(将现有数据导入到mongodb中)
mongoimport -d 数据库名称 -c 集合名称 --file 要导入的数据文件
在默认情况下,mongoimport命令不能执行,我们需要将mongoimport.exe的路径添加到系统变量Path中
###2.4 查询文档
####2.4.1 find(),返回的是一个数组
//find()参数为空,表示查找所有文档,返回的是数组
Course.find().then(result => console.log(result));
//特定查询,查找id为5e8747f40043aa3c70db12cd的所有信息
Course.find({_id:"5e8747f40043aa3c70db12cd"}).then(result => console.log(result));
####2.4.2 findOne(),返回的是对象
//findOne()参数为空,默认返回当前集合中的第一条文档
Course.findOne({name:'zhangsan'}).then(result => console.log(result));
####2.4.3 匹配大于( g t ) , 匹 配 小 于 ( gt),匹配小于( gt),匹配小于(lt)
//匹配年龄大于20,小于50
Course.find({age: {$gt: 20,$lt: 50}}).then(result => console.log(result));
####2.4.4 匹配包含($in)
//匹配hobby包含敲代码
Course.find({hobby: {$in: ['敲代码']}}).then(result => console.log(result));
####2.4.5 选择要查询的字段 select()
//比如查询name,email,不查询_id
Course.find().select('name email -_id').then(result => console.log(result));
####2.4.5 将数据排序 升序sort(),降序-sort()
//根据年龄进行升序
Course.find().sort('age').then(result => console.log(result));
//根据年龄进行降序
Course.find().sort('-age').then(result => console.log(result));
####2.4.6 skip跳过多少个文档,limit限制查询数量(分页能用到)
//跳过前2个文档,限制只显示3个文档
Course.find().skip(2).limit(3).then(result => console.log(result));
###2.5 删除文档
####2.5.1 删除单个
//删除id为5e8747f40043aa3c70db12cd的文档
Course.findOneAndDelete({_id: '5e8747f40043aa3c70db12cd'}).then(result => console.log(result));
//删除多个,第一个参数为查询条件(若为空,文档全删除),
Course.deleteMany({}).then(result => {console.log(result)});
###2.6 更新文档
//更新单个
Course.updateOne({查询条件},{要修改的值}).then(result => {console.log(result)});
//更新多个
Course.updateMany({查询条件},{要修改的值}).then(result => {console.log(result)});
###2.7 mongoose验证
在创建集合规则时,可以设置当前字段的验证规则,验证失败就不能插入数据
- required:true 必传字段
- minlength:最小长度
- maxlength:最大长度
- trim:true 去除字符串两边的空格
- min:最小数值(针对Number类型)
- max:最大数值(针对Number类型)
- enum: 列举,枚举
- validate: 自定义验证器
- default: 默认器
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/playground',{useNewUrlParser: true})
.then(() => console.log('连接成功'))
.catch(() => console.log(err,'连接失败'));
const mongooseSchema = new mongoose.Schema({
title: {
type: String,
required: [true,'请传入文章标题'],
minlength:2,
maxlength:5,
trim: true
},
age: {
type: Number,
min: 2,
max: 5
}
});
const Book = mongoose.model('Book',mongooseSchema);
Book.create({}).then(result => console.log(result));
获取错误信息
Book.create({})
.then(result => console.log(result))
.catch(error => {
//获取错误信息对象
const err = error.errors;
//将错误信息打印到控制台中
for(var att in err){
console.log(err[att]['message']);
}
})
###2.8 集合关联
通常不同集合的数据之间是有关系的,例如文章信息和用户信息存储在不同集合中,但文章是某个用户发表的,要查询文章的所有信息包括发表用户,就需要用到集合关联
- 使用id对集合进行关联
- 使用populate方法进行关联集合查询
//用户集合
const User = mongoose.model('User',new mongoose.Schema({name: {type:String}}));
//文章集合
const Post = mongoose.model('Post',new mongoose.Schema({
title: {type:String},
//使用id和将文章集合作者集合进行关联
author: {type: mongoose.Schema.Types.ObjectId,ref:'User'}
}));
//联合查询
Post.find()
.populate('author')
.then((err,result) => console.log(result));