A Developing Developer

(node:15564) [MONGOOSE] DeprecationWarning: Mongoose: the `strictQuery` option will be switched back to `false` by default in Mongoose 7. Use `mongoose.set('strictQuery', false);` if you want to prepare for this change. Or use `mongoose.set('strictQ.. 본문

ERROR

(node:15564) [MONGOOSE] DeprecationWarning: Mongoose: the `strictQuery` option will be switched back to `false` by default in Mongoose 7. Use `mongoose.set('strictQuery', false);` if you want to prepare for this change. Or use `mongoose.set('strictQ..

H-JJOO 2022. 12. 19. 21:07

Node.js 로 웹서버 연결 중 MongoDb 와 연결하는 과정에서 발생한 Error 이다.

파파고의 도움으로 무엇이 문제인지 파악한 결과  : (s)trictQuery  (s 는 어디갔지?) 

 

발생이유는 mongoose 7 에서 default 값이 strictQuery 엄격 모드 = false 되어있다고 한다.

 

해결방법은...

기본 값 false 를 true 로 바꿔줬다.

 

이런 해결법이 어떤 문제를 발생시킬지는 모르겠지만, 당장은 문제를 해결했으니, 추후 문제 발생하면 다시 알아보자.