리액트에서 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))
반응형
'개발 > React' 카테고리의 다른 글
[react] Redux 예제 (ft. 미들웨어, Redux-thunk, Redux-devtools) (0) | 2021.07.18 |
---|---|
[react] Refusing to install package with name "react-redux" under a package 오류 해결 (0) | 2021.07.11 |
[react] Property 'x' does not exist on type '{}'.ts 오류 해결 (0) | 2021.07.07 |
[react] Cannot assign to 'i' because it is a constant 오류 해결 (0) | 2021.07.04 |
[react] react-datepicker 사용법 (0) | 2021.06.30 |
댓글