Axios 연결
axios 연결 lib 에 index.js에 axios 정의
axios가 필요한 컴포넌트에 import를 시킨다. 방식은 POST, GET이 있다.
//POST방식
//예)로그인: axios 가 필요한 부분 -> handleSubmit에서
try {
const response= await Axios.post("/artSharing/sign",{
id, //똑같아서 생략 가능
pw:password
})
this.handleClose();
handleLogin(true);
console.log(response);
history.push("/");
}catch(error){
alert(error);
console.log(error);
};
//try catch 문에서 사용해야함
await Axios.post("스웨거 서버경로",{보내는 값 json형식} )
'Front-End > React.js' 카테고리의 다른 글
webpack이란? (0) | 2022.05.01 |
---|---|
React를 위해 사용하는 라이브러리들 (0) | 2022.05.01 |
Redux 개념이해 (0) | 2022.05.01 |
Component 실제 사용방법 (0) | 2022.05.01 |
Container 란? (0) | 2022.05.01 |