mongoose问题总结

1.DeprecationWarning: open() is deprecated in mongoose >= 4.11.0, use openUri() instead, or set the useMongoClient option if using connect() or createConnection(). See http://mongoosejs.com/docs/connections.html#use-mongo-client

mongoose.connect(‘mongodb://localhost/test’,{useMongoClient:true})

2.DeprecationWarning: Mongoose: mpromise (mongoose’s default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html

mongoose.Promise = global.Promise

猜你喜欢

转载自blog.csdn.net/zhaoyu_m69/article/details/78754821