mongoDB笔记
# mongoDB笔记
# 连接
const mongoose = require('mongoose');
// 不需要用户名和密码
mongoose.connect('mongodb://127.0.0.1:27017/mongoose_test', {useNewUrlParser: true});
// 需要用户名和密码
// mongoose.connect('mongodb://用户名:密码@127.0.0.1:27017/mongoose_test', {useNewUrlParser: true});
// 监听连接
mongoose.connection.once('open', function() {
console.log("数据库连接成功~~~");
});
// 监听断开连接
mongoose.connection.once('close', function() {
console.log("数据库已断开连接~~~");
});
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# 建表
// 创建schema对象
const Schema = mongoose.Schema;
var schema = new Schema({
name: String,
age: Number,
gender: {
type: String,
default: 'female'
},
address: String
});
// 通过Schema创建对象
// mongoose.model(模型名(首字母大写), schema对象, 集合名(不写默认是模型名+s))
const Student = mongoose.model('Student', schema);
// 指定集合名
// const Student = mongoose.model('Student', schema, 'students');
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 导出和导入数据
- 导出:在某个文件夹执行
mongodump -d 数据库名
,会在该文件夹生成一个dump文件夹 - 导入:在dump文件夹的上一级执行mongorestore,如果需要删除数据库再恢复备份可以添加--drop
上次更新: 2020/12/06, 21:12:00