티스토리 뷰
axios.post에 url을 작성하고 body에 넣고 싶은 내용을 넣는다.
그리고 응답을 콘솔에 찍어보려고 하면 빨간 줄이 죽죽 생긴다.
axios
.post('http://localhost:8000/users/signup', {
account: idValue,
password: pwValue,
nickname: nameValue,
email: emailValue,
})
.then((res)=>console.log(res))
이런 에러가 뜨는 걸로 봐서는 axios를 타입스크립트에서 사용하려면 요청 보내는 데이터와 응답받아서 오는 데이터의 타입을 지정해줘야 하는 것 같다.
Property 'message' does not exist on type 'AxiosResponse<any, any>'.
요청 타입, 응답 타입을 정해준다. 그러면 빨간 줄이 사라진다!
export interface SignUpType {
account: string;
password: string;
nickname: string;
email: string;
}
export interface SignUpRes {
message: string;
}
axios
.post<SignUpType, SignUpRes>('http://localhost:8000/users/signup', {
account: idValue,
password: pwValue,
nickname: nameValue,
email: emailValue,
})
.then((res)=>console.log(res))
728x90
'공부 노트' 카테고리의 다른 글
[JS] 바닐라 JS에서 fetch에 async 사용해보기 (0) | 2022.11.18 |
---|---|
[JS] 아스키코드 메소드 (0) | 2022.11.18 |
[TS] React로 진행한 프로젝트를 중간에 Typescript로 변경하기(feat. 코딩앙마) (0) | 2022.11.17 |
[JS] 스크롤 자동으로 아래로 가게 하기 (feat. 채팅 프로그램) (0) | 2022.11.04 |
[Git] 원격 저장소에 올라간 파일 지우기 (0) | 2022.10.31 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 비주얼스튜디오코드
- Til
- React
- javascript
- Python
- 타입스크립트
- 드림코딩
- git
- 스파르타코딩클럽
- 회고
- Typescript
- CSS
- 코드잇
- html
- 제이쿼리
- 구름에듀
- 제로초
- vue
- map
- 김버그
- 깃
- scss
- 저스트코드
- 자바스크립트
- 코딩앙마
- vscode
- js
- 리액트
- 파이썬
- TS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함