mongoose报错 DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead

2020-11-10 14:27:23 浏览数 (1)

也不知道为什么报这个错误,网上查找的解决方法,加一行代码解决

命令行工具会提示如下信息:

DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead

解决方法:

代码语言:javascript复制
//在连接数据库之前加上如下代码
mongoose.set('useCreateIndex', true)

0 人点赞