강의에 나오는 문법이 적용되지 않습니다
저도 강의듣다가 이것때문에 엄청 찾아보고 있었는데mongoose 더 이상 콜백을 허용하지 않는다고 하네요~스택오버플로에서 답을 찾은것 같아요아래 코드가 도움이 되실지 모르겠네요(혹시 몰라 참고글 링크도 적어둡니다)https://stackoverflow.com/questions/75586474/mongoose-stopped-accepting-callbacks-for-some-of-its-functionsapp.post('/register', async (req, res) => { //회원가입시 필요 정보를 client에서 가져오면 //데이터베이스에 삽입한다 //body parser를 통해 body에 담긴 정보를 가져온다 const user = new User(req.body) //mongoDB 메서드, user모델에 저장 const result = await user.save().then(()=>{ res.status(200).json({ success: true }) }).catch((err)=>{ res.json({ success: false, err }) }) })