Mongoose's default promise library is deprecated in MEAN stack

后端 未结 4 1366
北海茫月
北海茫月 2020-12-19 05:19

I\'m trying to start a MEAN-stack server, however I\'m getting this error msg:

Mongoose: mpromise (mongoose\'s default promise library) is deprecated,

4条回答
  •  情话喂你
    2020-12-19 06:03

    use this code,before the mongo connection and this will resolve the promise problem.

    mongoose.Promise = global.Promise;
    

提交回复
热议问题