nodejs中连接mongodb数据库
阅读原文时间:2023年07月08日阅读:2

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

如果不写 { useNewUrlParser: true }这句代码,则会报错,

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章