작성
·
168
답변 3
2
https://mongoosejs.com/docs/guide.html
=>
). Arrow functions explicitly prevent binding this
, so your method will not have access to the document and the above examples will not work.몽구스 공식 문서에는 이렇게 나왔는데요 ~
화살표함수는 this를 바인딩 하지않아서 User의 다큐멘트를 가질수 없어서 그럽니다 ^^
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/this
이걸 살펴보면 더 이해가 잘될것 같습니다 ~~!
0
0
모델에서 comparePassword 메소드를 만들지 않은 것 같습니다