본문 바로가기
💻CODING/react. vue

[react] POST url/[object%20Object] 404 (Not Found) 오류 해결

by 코딩하는 갓디노 2021. 7. 9.

react error

 

리액트에서 Axis post 로 API 호출을 하던 중 다음과 같은 오류가 났습니다. 

  const userFn = () => {
    const searchData = {
      userId,
      count: 1,	
    }
    axios.post(url + "/report/" + searchData)
      .then(res => console.log(res.data))
      .catch(err => console.log(err))
  }

 

오류 메시지

POST  url/[object%20Object] 404 (Not Found)

 

해결 방법

post()안의 + 파라미터에서 ,(콤마) 파라미터로 변경합니다. 

axios.post(url + "/report/", searchData)
.then(res => console.log(res.data))
.catch(err => console.log(err))

 

반응형

댓글