(node:71307) [DEP0079] DeprecationWarning

前端 未结 8 1700
故里飘歌
故里飘歌 2021-01-17 21:11

Try to update MongoDB document Getting Deprecation Warning as

(node:71307) [DEP0079] DeprecationWarning: Custom inspection function on Objects via

8条回答
  •  旧巷少年郎
    2021-01-17 21:33

    You should add the options useCreateIndex to your connect method

    mongoose.connect(keys.mongoURI, {
        useNewUrlParser: true,
        useCreateIndex: true,
    })
    

提交回复
热议问题