目录结构如下:
其中db.js为数据库的连接模块,collection下的User.js是创建mongoDB中的集合模块,sql.js为集合的增删改查的操作模块。
db.js代码如下:
const mongoose=require('mongoose');
//连接数据库
mongoose.connect('mongodb://localhost:27017/overwatch',{
useNewUrlParser: true,useUnifiedTopology: true });//注意这里的两个true,不加上的话以后的版本中连接可能会失效
//监听连接成功
mongoose.connection.on('connected'