乐趣区

关于前端:MongoDB数据库学习记录二

3.MongoDB 增删改查操作

3.1 创立汇合

创立汇合分为两步,一是对汇合设定规定,二是创立汇合,创立 mongoose.Schema 构造函数的实例即可创立汇合。

  // 设定汇合规定
 const courseSchema = new mongoose.Schema({
     name: String,
     author: String,
     isPublished: Boolean
 });
  // 创立汇合并利用规定
 const Course = mongoose.model('Course', courseSchema); // courses
3.2 创立文档

创立文档实际上就是向汇合中插入数据。
分为两步:

  1. 创立汇合实例。
  2. 调用实例对象下的 save 办法将数据保留到数据库中。
  // 创立汇合实例
 const course = new Course({
     name: 'Node.js course',
     author: '',
     tags: ['node', 'backend'],
     isPublished: true
 });
  // 将数据保留到数据库中
 course.save();
Course.create({name: 'JavaScript', author: '', isPublish: true}, (err, doc) => { 
     //  谬误对象
    console.log(err)
     //  以后插入的文档
    console.log(doc)
});
Course.create({name: 'JavaScript', author: '', isPublish: true})
      .then(doc => console.log(doc))
      .catch(err => console.log(err))
3.3 mongoDB 数据库导入数据

mongoimport –d 数据库名称 –c 汇合名称 –-file 要导入的数据文件
找到 mongodb 数据库的装置目录,将装置目录下的 bin 目录搁置在环境变量中。

3.4 查问文档
//  依据条件查找文档(条件为空则查找所有文档)Course.find().then(result => console.log(result))
// 返回文档汇合
[{
    _id: 5c0917ed37ec9b03c07cf95f,
    name: 'node.js',
    author: ''
},{
     _id: 5c09dea28acfb814980ff827,
     name: 'Javascript',
     author: ''
}]
//  依据条件查找文档
Course.findOne({name: 'node.js'}).then(result => console.log(result))
// 返回文档
 {
    _id: 5c0917ed37ec9b03c07cf95f,
    name: 'node.js',
    author: ''
}
 //  匹配大于 小于
 User.find({age: {$gt: 20, $lt: 50}}).then(result => console.log(result))
 //  匹配蕴含
 User.find({hobbies: {$in: ['敲代码']}}).then(result => console.log(result))
 //  抉择要查问的字段  
 User.find().select('name email').then(result => console.log(result))
 // 将数据依照年龄进行排序
 User.find().sort('age').then(result => console.log(result))
 //  skip 跳过多少条数据  limit 限度查问数量
 User.find().skip(2).limit(2).then(result => console.log(result))
3.5 删除文档
 // 删除单个
Course.findOneAndDelete({}).then(result => console.log(result))
 // 删除多个
User.deleteMany({}).then(result => console.log(result))
3.6 更新文档
// 更新单个
User.updateOne({查问条件}, {要批改的值}).then(result => console.log(result))
// 更新多个
User.updateMany({查问条件}, {要更改的值}).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: 默认值
获取错误信息:error.errors['字段名称'].message
3.7 汇合关联

通常不同汇合的数据之间是有关系的,例如文章信息和用户信息存储在不同汇合中,但文章是某个用户发表的,要查问文章的所有信息包含发表用户,就须要用到汇合关联。

  • 应用 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));
退出移动版