第五章
1. 数据库概述及环境搭建
1.1 为什么要使用数据库
动态网站中的数据都是存储在数据库中的;数据库可以用持久存储客户端通过表单收集的用户信息;数据库软件本身可以对数据进行高效的管理。
1.2 什么是数据库
数据库及存储数据的仓库,可以将数据进行有序的分门别类的存储。它是独立于语言之外的软件,可以通过API去操作它。
常见的数据库软件有:MySQL、MongoDB、Oracle。
1.3 MongoDB数据库下载安装
MongoDB communicty server
1.4 MongoDB可视化软件安装
MongoDB compass 是MongoDB可视化操作软件,是使用图形界面操作数据库的一种方式。
1.5 数据库相关概念
在一个数据库软件中可以包含多个数据仓库,在每个数据仓库中可以包含多个数据集合,每个数据集合中可以包含多条文档(具体数据)。
术语 | 说明 |
---|---|
database | 数据库,mongoDB数据库软件中可以建立多个数据库 |
collection | 集合,一组数据的集合,可以理解为JavaScript中的数组 |
document | 文档,一条具体的数据,可以理解为JavaScript中的对象 |
field | 字段,文档中的属性名称,可以理解为JavaScript中的对象属性 |
1.6 Mongoose 第三方包
使用Node.js操作MongoDB数据库需要依赖Node.js第三方包mongoose。
使用 npm install mongoose
命令下载,下载完成后如下图所示:
此时文件夹中多了一个json文件和一个node_modules文件夹。
1.7 启动 MongoDB
在命令行工具中运行 net start mongoDB即可启动MongoDB,否则MongoDB将无法连接。
按照视频教程,我输入了net start mongoDB命令,结果最后报错,如图所示:
找了许久的原因,打开任务管理器,发现此时MongoDB任务已经启动过了,如下图所示:
于是我也想视频教程那样,先尝试关闭MongoDB,但是却发生了报错:
根据上面的错误信息 “发生系统错误 5。拒绝访问” 得知错误信息号为5,我根据该信息在网上查找了原因,得知是没有以管理员身份运行Window PowerShell。我在任务管理器中手动将MongoDB关闭后,以管理员身份运行了Window PowerShell,并输入命令net start mongoDB尝试重新启动MongoDB,这下终于成功启动且任务管理器中也看到了MongoDB在运行!
接着我再尝试net stop MongoDB命令关闭MongoDB,也成功了!
总结:最初的 “发生系统错误 5。拒绝访问” 报错原因是由于我没有以管理员身份运行Window PowerShell。
1.8 数据库连接
使用 Node 的API mongoose
提供的connect方法即可连接数据库。
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground')
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
返回结果发出来警告:(node:10800) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.
(Use node --trace-deprecation ...
to show where the warning was created)
(node:10800) DeprecationWarning: current Server Discovery and Monitoring engine is deprecated, and will be removed in a future version. To use the new Server Discover and Monitoring engine, pass option { useUnifiedTopology: true } to the MongoClient constructor.
于是修改代码重新运行后,没有了警告。
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', {
useNewUrlParser: true,
useUnifiedTopology: true
})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
1.9 创建数据库
在MongoDB中不需要显示创建数据库,如果正在使用的数据库不存在,MongoDB会自动创建。
2. MongoDB的操作
2.1 创建集合
创建集合分为两步,一是对集合设定规则,二是创建集合,创建mongoose.Schema构造函数的实例即可创建集合。
// 创建集合规则
const courseSchema = new mongoose.Schema({
name: String,
authot: String,
isPublished: Boolean
});
// 使用规则创建集合
// Course 是一个构造函数
const Course = mongoose.model('Course', courseSchema);
3.2 创建文档
壹方式
创建文档实际上就是向集合中插入数据。分为两步:(1)创建集合实例;(2)调用实例对象下的save方法将数据保存到数据库中。
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', {
useNewUrlParser: true,
useUnifiedTopology: true
})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
// 创建集合规则 courseShema为集合规则的名称
const courseSchema = new mongoose.Schema({
name: String,
author: String,
isPublished: Boolean
});
// 使用规则创建集合
// Course 是一个构造函数
const Course = mongoose.model('Course', courseSchema); // 集合实际名称为courses
// 实例化集合对象 Course 即创建文档
const course = new Course({
name: 'node.js基础',
author: '黑马讲师',
isPublished: true
});
// 将集合实例化对象也就是文档插入到数据库中
course.save();
重新运行js文件之后,到MongoDB Compass中重新刷新一下,就可以看到新出现的数据库playground以及新集合courses了。
贰方式 回调函数接收异步PAI的执行结果
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', {
useNewUrlParser: true,
useUnifiedTopology: true
})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
// 创建集合规则
const courseSchema = new mongoose.Schema({
name: String,
author: String,
isPublished: Boolean
});
// 使用规则创建集合
// Course 是一个构造函数
const Course = mongoose.model('Course', courseSchema);// 集合实际名称为courses
// 向集合中插入文档
Course.create({
name: 'JavaScript',
author: '黑马讲师',
isPublished: false
}, (err, result) => {
console.log(err);
console.log(result);
})
贰方式 Promise对象接收异步API执行结果。
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', {
useNewUrlParser: true,
useUnifiedTopology: true
})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
// 创建集合规则
const courseSchema = new mongoose.Schema({
name: String,
author: String,
isPublished: Boolean
});
// 使用规则创建集合
// Course 是一个构造函数
const Course = mongoose.model('Course', courseSchema);// 集合实际名称为courses
// 向集合中插入文档
Course.create({
name: 'Vue',
author: '黑马讲师',
isPublished: false
}).then(result => {
console.log(result);
})
.catch(err => {
console.log(err);
})
2.3 MongoDB数据库导入数据
命令格式:mongoimport -d 数据库名称 -c 集合名称 --file 要导入的数据库文件
在此之前需要将mongoimport命令的可执行文件所在的目录(即D:\MongoDB\Server\4.4\bin)添加到系统的环境变量中,否则在命令行工具中无法识别mongoimport命令。但接着又有问题来了,我打开了D:\MongoDB\Server\4.4\bin目录,然后发现该目录下bin文件夹下没有mongoimport.exe文件。
之后在网上找到来了解决办法。办法是直接在https://www.mongodb.com/try/download/database-tools?tck=docs_databasetools 下载工具包,解压后把里面所有的解压文件复制到 D:\MongoDB\Server\4.4\bin 目录下。这样就有mongoimport.exe文件啦!
将mongoimport命令的可执行文件所在的目录(即D:\MongoDB\Server\4.4\bin)添加到系统的环境变量中。之后就可以使用mongoimport命令啦!
在此准备需要导入数据库的文件user.json。
{"_id":{"$oid":"5c09f1e5aeb04b22f8460965"},"name":"张三","age":20,"hobbies":["足球","篮球","橄榄球"],"email":"zhangsan@itcast.cn","password":"123456"}
{"_id":{"$oid":"5c09f236aeb04b22f8460967"},"name":"李四","age":10,"hobbies":["足球","篮球"],"email":"lisi@itcast.cn","password":"654321"}
{"_id":{"$oid":"5c09f267aeb04b22f8460968"},"name":"王五","age":25,"hobbies":["敲代码"],"email":"wangwu@itcast.cn","password":"123456"}
{"_id":{"$oid":"5c09f294aeb04b22f8460969"},"name":"赵六","age":50,"hobbies":["吃饭","睡觉","打豆豆"],"email":"zhaoliu@itcast.cn","password":"123456"}
{"_id":{"$oid":"5c09f2b6aeb04b22f846096a"},"name":"王二麻子","age":32,"hobbies":["吃饭"],"email":"wangermazi@itcast.cn","password":"123456"}
{"_id":{"$oid":"5c09f2d9aeb04b22f846096b"},"name":"狗蛋","age":14,"hobbies":["打豆豆"],"email":"goudan@163.com","password":"123456"}
之后在命令行工具中输入命令 mongoimport -d playground -c users --file ./user.json
,刷新 MongoDB Compass,发现数据导入成功。
2.4 查询文档
2.4.1 find()
方法
find方法返回Promise对象,所以可以在后面通过链式调用then方法返回查询结果。查询结果result实际上是一个数组,每一个数组元素是一个对象。数组对象是通过find方法查询出来的文档。注意find方法返回的是文档的集合。
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', {
useNewUrlParser: true,
useUnifiedTopology: true
})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
// 创建集合规则
const userSchema = new mongoose.Schema({
name: String,
age: Number,
email: String,
password: String,
hobbies: [String]
});
// 使用规则创建集合
// User 是一个构造函数
const User = mongoose.model('User', userSchema);// 集合实际名称为users
// 查询用户集合中的所有文档
User.find().then(result => console.log(result));
我们也可以添加条件进行查询,只需修改代码:
// 查询用户集合中的所有文档
User.find({_id: '5c09f1e5aeb04b22f8460965'}).then(result => console.log(result));
2.4.2 findone()
方法
findOne()
返回一个对象而非一个数组,这有别于find()方法。fandOne默认返回集合中的第一条文档。
// 查询用户集合中的响应文档
User.findOne({name: '狗蛋'}).then(result => console.log(result));
2.4.3 条件查询
查询用户集合中年龄字段在20~40之间的文档:
// 查询用户集合中的所有文档
User.find({age: {$gt: 20, $lt: 40}}).then(result => console.log(result));
查询用户集合中兴趣爱好字段包含足球的文档集合:
// 查询用户集合中的所有文档
User.findOne({hobbies: {$in: ['足球']}}).then(result => console.log(result));
如果只想查询某个字段:
/ 查询用户集合中的所有文档
User.find().select('name email').then(result => console.log(result));
如果不想要默认的_id字段,则可修改代码:
// 查询用户集合中的所有文档
User.find().select('name email -_id').then(result => console.log(result));
将数据按照年龄进行升序排序:
// 查询用户集合中的所有文档
User.find().sort('age').then(result => console.log(result));
将数据按照年龄进行降序排序:
// 查询用户集合中的所有文档
User.find().sort('-age').then(result => console.log(result));
skip 跳过多少条数据,limit限制查询数量:
// 查询用户集合中的所有文档
User.find().skip(2).limit(3).then(result => console.log(result));
2.5 删除文档
2.5.1 删除单个文档
findOneAndDelete方法返回Promise对象,所以可以通过then方法里面的回调函数返回结果,返回结果为一个对象。如果查询条件匹配了多个文档,那么将会删除第一个匹配的文档。现在我们想删掉name: 狗蛋对应的文档:
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', {
useNewUrlParser: true,
useUnifiedTopology: true
})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
// 创建集合规则
const userSchema = new mongoose.Schema({
name: String,
age: Number,
email: String,
password: String,
hobbies: [String]
});
// 使用规则创建集合
// User 是一个构造函数
const User = mongoose.model('User', userSchema);// 集合实际名称为users
// 查询用户集合中的所有文档
User.findOneAndDelete({_id: '5c09f2d9aeb04b22f846096b'}).then(result => console.log(result));
2.5.2 删除多个文档
现在删除User集合中所有的文档:
// 删除用户集合中的所有文档
User.deleteMany({}).then(result => console.log(result));
2.6 更新文档
更新单个文档
// 更新用户集合中的文档
User.updateOne({name: '林予曦'}, {name: '兔子先生'}).then(result => console.log(result));
// 更新用户集合中的文档
User.updateMany({_id: '5c09f1e5aeb04b22f8460965'}, {name: '林予曦'}).then(result => console.log(result));
更新多个文档
// 更新用户集合中的文档
User.updateMany({}, {age: 18}).then(result => console.log(result));
3.6 mongoose验证
在创建集合规则时,可以设置当前字段的验证规则,验证失败就则输入插入失败。
- required: true 必传字段。
- minlength: 3 字符串最小长度。
- maxlength: 20 字符串最大长度。
- min: 2 数值最小为2。
- max: 100 数值最大为100。
- enum: [‘html’, ‘css’, ‘javascript’, ‘node.js’]。
- trim: true 去除字符串两边的空格。
- validate: 自定义验证器。
- default: 默认值。
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', { useNewUrlParser: true})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
const postSchema = new mongoose.Schema({
title: {
type: String,
// 必选字段
required: [true, '请传入文章标题'],
// 字符串的最小长度
minlength: [2, '文章长度不能小于2'],
// 字符串的最大长度
maxlength: [5, '文章长度最大不能超过5'],
// 去除字符串两边的空格
trim: true
},
age: {
type: Number,
// 数字的最小范围
min: 18,
// 数字的最大范围
max: 100
},
publishDate: {
type: Date,
// 默认值
default: Date.now
},
category: {
type: String,
// 枚举 列举出当前字段可以拥有的值
enum: {
values: ['html', 'css', 'javascript', 'node.js'],
message: '分类名称要在一定的范围内才可以'
}
},
author: {
type: String,
validate: {
// 自定义验证
validator: v => {
// 返回布尔值
// true 验证成功
// false 验证失败
// v 要验证的值
return v && v.length > 4
},
// 自定义错误信息
message: '传入的值不符合验证规则'
}
}
});
const Post = mongoose.model('Post', postSchema);
Post.create({title:'林予曦', age: 32, category: 'java', author: 'bd'})
.then(result => console.log(result))
.catch(error => {
// 获取错误信息对象
const err = error.errors;
// 循环错误信息对象
for (var attr in err) {
// 将错误信息打印到控制台中
console.log(err[attr]['message']);
}
})
2.7 集合关联
通常不同集合的数据之间是有关系的,例如文章信息和用户信息存储在不同集合中,但文章是某个用户发表的,要查询文章的所有信息包括发表用户,就需要到集合关联。
- 使用id对集合进行关联。
- 使用populate方法进行关联集合查询。
// 引入mongoose第三方模块 用来操作数据库
const mongoose = require('mongoose');
// 数据库连接
mongoose.connect('mongodb://localhost/playground', { useNewUrlParser: true, useUnifiedTopology: true})
// 连接成功
.then(() => console.log('数据库连接成功'))
// 连接失败
.catch(err => console.log(err, '数据库连接失败'));
// 用户集合规则
const userSchema = new mongoose.Schema({
name: {
type: String,
required: true
}
});
// 文章集合规则
const postSchema = new mongoose.Schema({
title: {
type: String
},
author: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User'
}
});
// 用户集合
const User = mongoose.model('User', userSchema);
// 文章集合
const Post = mongoose.model('Post', postSchema);
// 创建用户
User.create({name: 'itheima'}).then(result => console.log(result));
// 创建文章
Post.create({title: '123', author: '5c0caae2c4e4081c28439791'}).then(result => console.log(result));
Post.find().populate('author').then(result => console.log(result));
2.8 案例:用户信息增删改查
- 搭建网站服务器,实现客户端与服务器端的通信。
// 引入系统模块
const http = require('http');
// 创建服务器
const app = http.createServer();
// 为服务器对象添加请求事件
app.on('request', (req, res) => {
res.end('OK')
})
// 监听端口
app.listen(3000);
- 连接数据库,创建用户集合,向集合中插入文档。
连接数据库前需要下载mongoose第三方模块。
之后编写代码连接数据库:
// 引入系统模块
const http = require('http');
const mongoose = require('mongoose');
// 数据库连接 27017是mongodb数据库得默认端口
mongoose.connect('mongodb://localhost:27017/playground')
.then(() => console.log('数据库连接成功'))
.catch(() => console.log('数据库连接成功'));
// 创建服务器
const app = http.createServer();
// 为服务器对象添加请求事件
app.on('request', (req, res) => {
res.end('OK')
})
// 监听端口
app.listen(3000);
数据库连接成功,但有警告。根据警告我们修改代码:
// 引入系统模块
const http = require('http');
const mongoose = require('mongoose');
// 数据库连接 27017是mongodb数据库得默认端口
mongoose.connect('mongodb://localhost:27017/playground',
{ useNewUrlParser: true, useUnifiedTopology: true })
.then(() => console.log('数据库连接成功'))
.catch(() => console.log('数据库连接成功'));
// 创建服务器
const app = http.createServer();
// 为服务器对象添加请求事件
app.on('request', (req, res) => {
res.end('OK')
})
// 监听端口
app.listen(3000);
nodemon监听到了代码的修改,重新输出提示信息,此时没有了警告。
导入数据到数据库
3. 当用户访问/list时,将所有用户信息查询出来。
实现路由功能
- 将用户信息和表格HTML进行拼接并将拼接结果响应回客户端。
- 当用户访问/add时,呈现表单页面,并实现添加用户信息功能。
- 当用户访问/modify时,呈现修改页面,并实现修改用户信息功能。
- 当用户访问/delete时,实现用户删除功能。