728x90
서버 코드 작성 중 실행을 하니까 아래와 같은 오류가 발생하였다.
(node:27064) [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('strictQuery', true);`
to suppress this warning.
(Use `node --trace-deprecation ...` to show
where the warning was created)
[해결]
mongoose를 connect한 코드 위에 아래 코드를 추가한다.
mongoose.set("strictQuery", false); >>>>추가
mongoose.connect(process.env.MONGO_URL);
728x90