mongDB中用find()方法查询数据

//插入数据库模块

const mongoose = require('mongoose');

 

//连接数据库

mongoose.connect('mongodb://localhost/playground', { useNewUrlParse: true })

    .then(result => {

        console.log('数据库连接成功');

    })

    .catch(err => {

        console.log(err, '数据库连接失败');

    })

 

//创建集合规则

const userSchema = new mongoose.Schema({

    name: String,

    age: Number,

    email: String,

    password: String,

    hobbies: [String]

});

 

//使用规则创建集合

const User = mongoose.model('User', userSchema);

 

//查询用户集合中的所有文档

User.find().then(result => console.log(result));

你可能感兴趣的:(mongDB中用find()方法查询数据)