내일 배움 캠프 4기 TIL(22.12.22)

baesee·2022년 12월 23일
0

내일배움캠프

목록 보기
47/75

댓글 삭제

const onDeleteComments = (id) => {
    preventDefault();
    dispatch(deleteComment(id));
    axios.delete(`http://localhost:3001/comments/${id}`);
    setComments(comments.filter((comment) => comment.id !== id));
  };

해결 못한것

  • 가끔 delete 400 뜨면서 삭제가 안됨
  • 로컬에서만 지워지는 경우가 있음
  • 삭제 누르면 지워기는하나 새로고침이 되어야 지워진다

Try

  • setComments는 부모 component에서 props로 받아 와서 사용한다.

0개의 댓글