自用MongoDB

  • Post author:
  • Post category:其他




1:如何连接Mongodb数据库

const mongoose = require('mongoose');

mongoose.connect('mongodb://localhost/playground', { useNewUrlParser: true, useUnifiedTopology: true })
  .then(() => console.log('数据库连接成功'))
  .catch(err => console.log(err, '数据库连接失败',));



2:集合规则+创建集合(new mongoose.Scheme({})+mongoose.model(‘name’,集合规则))

// 设置集合规则
const courseSchema = new mongoose.Schema({
  name: String,
  author: String,
  isPublished: Boolean
});
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: '传入的值不符合验证规则'
    }
  }
});




3:插入文件+创建数据项(new 集合({})+ 集合.create({}))

//Way一:
// 使用规则创建集合 返回集合类(集合构造函数)
const Course = mongoose.model('Course', courseSchema);

// 创建集合类的实例
const course = new Course({
  name: 'Node.js course',
  author: 'wangjian',
  isPublished: true
});
// 保存实例,将数据保存到数据库中
course.save();
//Way二:
// 使用规则创建集合 返回集合类(集合构造函数)
const Course = mongoose.model('Course', courseSchema);

Course.create({ name: 'JavaScript基础', author: '黑马讲师', isPublish: true })
  .then(doc => console.log(doc))
  .catch(err => console.log(err));


Course.find({
  name: 'wangjian',
  isPublished: true
})
  .limit(10)
  .sort({ name: 1 }) // 1 升序 -1 降序
  .select({ name: 1, tags: 1 })
  .exec((err, data) => { })



4:条件查询例子

// 使用规则创建集合 返回集合类(集合构造函数)
const User = mongoose.model('User', userSchema);

// 根据条件查找文档,如果查询的数据不存在则返回空数组
// 1:如果条件为空则查找所有文档
// User.find()
//   .then(result => console.log(result))

// 2:根据条件_id字段查找文档
// User.find({ _id: '5c09f2b6aeb04b22f846096a' })
//   .then(result => console.log(result))
// 

// 3:根据条件查找返回一条文档,默认返回当前集合中的第一条文档
// User.findOne().then(result => console.log(result))
// 根据条件去查询文档
// User.findOne({ name: '王二麻子' }).then(result => console.log(result))

// 4:查询用户集合中年龄字段大于20并且小于40的文档(结果没有出来)
// User.find({ age: { $gt: 20, $lt: 40 } }).then(result => console.log(result))

// 5:查询用户集合中hobbies字段值包含足球的文档
// User.find({ hobbies: { $in: ['足球'] } }).then(result => console.log(result))

// 6:选择要查询的字段
// User.find().select('name email -_id').then(result => console.log(result))

// 7:根据年龄字段进行升序排列
// User.find().sort('age').then(result => console.log(result))

// 8:根据年龄字段进行降序排列
// User.find().sort('-age').then(result => console.log(result))

// 9:查询文档跳过前两条结果 限制显示3条结果
// User.find().skip(2).limit(3).then(result => console.log(result))



5:删除文档


// 查找到一条文档并且删除
// 返回删除的文档
// 如何查询条件匹配了多个文档 那么将会删除第一个匹配的文档
// User.findOneAndDelete({_id: '5c09f267aeb04b22f8460968'}).then(result => console.log(result))
// 删除多条文档
User.deleteMany({}).then(result => console.log(result))



6:更新文档

// 使用规则创建集合
const User = mongoose.model('User', userSchema);
// 找到要删除的文档并且删除
// 返回是否删除成功的对象
// 如果匹配了多条文档, 只会删除匹配成功的第一条文档
// User.updateOne({name: '李四'}, {age: 120, name: '李狗蛋'}).then(result => console.log(result))
// 找到要删除的文档并且删除
User.updateMany({}, { age: 300 }).then(result => console.log(result))



7:集合联合查询

// 创建用户
// User.create({name: 'itheima'}).then(result => console.log(result));
// 创建文章
// Post.create({titile: '123', author: '5c0caae2c4e4081c28439791'}).then(result => console.log(result));
Post.find().populate('author').then(result => console.log(result))



8:在catch中的错误信息

const Post = mongoose.model('Post', postSchema);

Post.create({ title: 'aa', age: 60, 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']);
    }
  })



附:User测试:

{
  "_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": "dashen@itcast.cn",
  "password": "123456"
}
{
  "_id": {
    "$oid": "5c09f2d9aeb04b22f846096b"
  },
  "name": "小白",
  "age": 14,
  "hobbies": [
    "橄榄球"
  ],
  "email": "xiaobai@163.com",
  "password": "123456"
}



版权声明:本文为weixin_49667641原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。