DELETE 요청의 두 번째 인자에 data: {} atrribute를 넣어주면 된다.
Axios.delete(`/post/like`, {
data: { // 서버에서 req.body.{} 로 확인할 수 있다.
postId: ...
commentId: ...
},
withCredentials: true,
});
Axios - delete 요청 시 body에 데이터 넣는 법
출처 : https://velog.io/@bigbrothershin/Axios-delete-%EC%9A%94%EC%B2%AD-%EC%8B%9C-body%EC%97%90-%EB%8D%B0%EC%9D%B4%ED%84%B0-%EB%84%A3%EB%8A%94-%EB%B2%95