mongoose.connect() 连接数据库显示:
(node:18927) DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead.
(Use node --trace-deprecation ...
to show where the warning was created)
解决方法:
//在连接数据库之前加上如下代码
mongoose.set('useCreateIndex', true)