mongoose问题总结

来源:互联网 发布:常见数据库 编辑:程序博客网 时间:2024/05/22 06:32

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