asked
MERN STACK Community: React from Start to Deployment
Post-User: Link post information and member information
Written on
·
349
1
console.log 에서는 postInfo 정보를 author까지 잘 가져옵니다. 그러나
강의 영상대로 postInfo 에서 author 로 접근했을 경우
이런식으로 에러가는 현상이있어서 질문드립니다.
강의영상이랑은 똑같이 작성했는데 여기서 에러가 나서
user.uid === postInfo.author.uid
접근을 못하고 있습니다.
Answer 1
옵셔널 체이닝으로 걸어서
postInfo.author?.displayName 으로 해결했습니다.