트러블 슈팅 (null과 배열)
⚠️ 에러 내용 및 원인
댓글내의 댓글(대댓글)을 입력하면 첫 대댓글에만 흰화면 및 아래와 같은 오류가 발생하였다.
기존 코드
userApis
.writeComment(commentMsg)
.then((res) => {
console.log(res);
setCertifyDetail((prev) => {
return {
...prev,
commentList: [...prev.commentList, res.data],
};
});
setComment("");
})
.catch((err) => {
console.log(err);
});
원인을 찾아보니 댓글 데이터에 대댓글이 null값으로 들어갔기 때문에 해당 오류가 생긴것으로 보였다.
🔆 해결 방안
댓글 등록시 spread문법을 이용하여 대댓글에 null이 아닌 빈배열을 넣어준다.
userApis
.writeComment(commentMsg)
.then((res) => {
console.log(res);
setCertifyDetail((prev) => {
return {
...prev,
commentList: [...prev.commentList, {...res.data, subCommentList:[]}],
};
});
setComment("");
})
.catch((err) => {
console.log(err);
});
Leave a comment