美文网首页
UnhandledPromiseRejectionWarning

UnhandledPromiseRejectionWarning

作者: 踏莎行 | 来源:发表于2021-01-14 17:17 被阅读0次

    如果之前MongoDB设置了数据库访问权限,所以不论是打开mongodb-compass软件还是运行node app.js都需要有管理权限才可

    // 数据库连接 
    mongoose.connect('mongodb://root:root@localhost:27017/alibaixiu?authSource=admin', { useNewUrlParser: true, useCreateIndex: true})
        .then(() => console.log('数据库连接成功'))
        .catch(() => console.log('数据库连接失败'));
    
    

    转载https://blog.csdn.net/w_hx10/article/details/109538770

    相关文章

      网友评论

          本文标题:UnhandledPromiseRejectionWarning

          本文链接:https://www.haomeiwen.com/subject/nmqtaktx.html