강의

멘토링

커뮤니티

Inflearn Community Q&A

kimrubyredmine0283's profile image
kimrubyredmine0283

asked

Node.js Textbook - From Basics to Project Practice

Try it yourself 4 (delete post)

여기까지 마친후 해시태그 검색을 하면.. 오류가납니다.

Resolved

Written on

·

223

0

/lecture/nodebird/views/main.pug:35 33| .twit-img 34| img(src=twit.img alt='섬네일') > 35| -const like = user && twit && twit.Liker.map(l => l.id).includes(user.id); 36| if user && !like 37| button.like 좋아요 38| else if user && like Cannot read property 'map' of undefined

 

TypeError: /Applications/MAMP/htdocs/lecture/nodebird/views/main.pug:35
    33|             .twit-img
    34|               img(src=twit.img alt='섬네일')
  > 35|           -const like = user && twit && twit.Liker.map(l => l.id).includes(user.id);
    36|           if user && !like
    37|             button.like 좋아요
    38|           else if user && like

Cannot read property 'map' of undefined

이렇게 발생하는데.. 어떻게 고쳐야하나요 ㅠㅠ
javascriptmongodbnodejsmysql

Answer 2

1

zerocho님의 프로필 이미지
zerocho
Instructor

-const like = user && twit && twit.Liker && twit.Liker.map(l => l.id).includes(user.id);
로 수정해보세요.

0

해결되었습니다. :) 감사합니다.

kimrubyredmine0283's profile image
kimrubyredmine0283

asked

Ask a question