[TROUBLESHOOTING] AXIOS 400 ERROR - Required request parameter 'user' for method parameter type Long is not present

THOVY·2022년 9월 7일
0

TROUBLESHOOTING

목록 보기
9/41

ERROR ❌

// FE
function replySubmit(){
  axios.get('http://localhost:8080/reply', {
    params:{
      userId:8,
      postId:1,
      contents:replyContent
    }
  })
    .catch(function(error){
    
    ...
// BE
@GetMapping("/reply")
public ReplyDTO writeReply(
        @RequestParam(value = "user") Long userId,
        @RequestParam(value = "post") Long postId,
        @RequestParam(value = "contents") String contents){
    return replyService.writeReply(userId,postId, contents);
}

GET 메서드를 이용해 댓글 기능을 만들려고 했다.

userIdpostId 를 임의로 넣어놓고 통신이 되는지 넣어봤는데,

허에에엥??????

userIduserId 를 넣는데 왜 user 가 없다하지????

해결 ✅

// FE
function replySubmit(){
  axios.get('http://localhost:8080/reply', {
    params:{
      user:8,
      post:1,
      contents:replyContent
    }
  })
    .catch(function(error){
    
    ...

FE 에서 userIduser 로 바꾸고, postIdpost로 바꾸면 된다.

BE 에서 userpostvalue 를 설정해놓고 저따위로 보내니 될리가..

친절한 에러메세지를 보면서도 깨닫지 못한 나, 반성해!

생각해보면 댓글 가져오기를 userId 로 가져오고 있으니. 내가 저렇게 보낸 것도 이해가 되기도 한다. 하지만 댕청했다는 건 변하지 않아.

끝!

항상 댕청해지지 않도록 조심하자!

profile
BEAT A SHOTGUN

0개의 댓글