ykloveyxk / vue-login

This is a login program based on vuejs and axios,for beginners

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DeprecationWarning: `open()` is deprecated in mongoose >= 4.11.0

wzc0x0 opened this issue · comments

node server时候报错,本地package.json显示mongoose是4.8.4;
查询后得知,mongoose.connection.on("open")这种方式废弃了,建议修改为mongoose.connection.openUri(config.mongodb)

感谢您的反馈,但是据我测试最新版本的mongoose还是兼容on方法的,至于该问题的解决方法是将
mongoose.connect(config.mongodb)
修改为
mongoose.connect(config.mongodb, {useMongoClient: true})
我会之后进行修改