React axios
정의
axios 란
브라우저를 위한 Promise 기반 HTTP 클라이언트
설치
npm i axios
사용하기
import
import axios from "axios";
target URL 설정
const URL = "https://jsonplaceholder.typicode.com/todos";
async await 사용
<button
onClick={async () => {
try{
const response = await axios.get(URL);
setData(response.data);
}
catch (error){
console.error(error);
}
}}
>
{: .notice}
데이터패치
</button>
댓글남기기