DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead

// 引入mongoose模块
const mongoose = require('mongoose');
// 链接数据库
mongoose.set('useCreateIndex', true) //加上这个
mongoose.connect('mongodb://localhost/xxxxxxxxx',{useNewUrlParser: true,useUnifiedTopology: true})
        .then(()=>console.log('数据库连接成功'))
        .catch(()=>console.log('数据库连接失败'))
posted @ 2019-09-28 15:24  谁凭花解语  阅读(1941)  评论(0编辑  收藏  举报