티스토리 뷰
반응형
React에서 API를 호출하기 위해 axios를 활용하는 방법이 있습니다.
이 포스팅에서는 axios 설치 방법과 Get, Post, Put, Delete API를 호출하는 방법를 정리하겠습니다.
1. Axios 설치
Axios는 HTTP 클라이언트 라이브러리로 React, Vue에서 많이 사용되는 라이브러리입니다.
Axios는 Promise 기반으로 XHRHttpRequests 요청을 쉽게 할 수 있습니다.
설치방법
Using npm:
npm install axios
Using yarn:
npm install axios
Using CDN:
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
2. Axios 사용 API 호출 하는 방법
GET API 호출:
GET API를 호출하는 방법으로 두가지가 있습니다.
params를 URL에 넣는 방법, 따로 parmas를 추가하는 방법 필요한 방법으로 사용하시면 됩니다.
const axios = require('axios');
// Make a request for a user with a given ID
axios.get('/user?ID=12345')
.then(function (response) {
// handle success
console.log(response);
})
.catch(function (error) {
// handle error
console.log(error);
})
.then(function () {
// always executed
});
// Optionally the request above could also be done as
axios.get('/user', {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
})
.then(function () {
// always executed
});
GET과 DELETE는 동일하게 호출할 수 있습니다.
DELETE API 호출:
axios.delete('/user?ID=12345')
.then(function (response) {
// handle success
console.log(response);
})
.catch(function (error) {
// handle error
console.log(error);
})
.then(function () {
// always executed
});
POST API 호출:
단일 API를 호출하는 방법 그리고 멀티로 두개의 API를 호출하여 가져오는 방법이 있습니다.
단일 API 호출:
axios.post('/user', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
멀티 API 호출:
function getUserAccount() {
return axios.get('/user/12345');
}
function getUserPermissions() {
return axios.get('/user/12345/permissions');
}
axios.all([getUserAccount(), getUserPermissions()])
.then(axios.spread(function (acct, perms) {
// Both requests are now complete
}));
POST는 PUT과 동일하게 호출이 가능합니다.
PUT API 호출 :
axios.PUT('/user', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
이외도 axios는 다양한 매소드를 지원합니다.
axios.request(config)
axios.get(url[, config])
axios.delete(url[, config])
axios.head(url[, config])
axios.options(url[, config])
axios.post(url[, data[, config]])
axios.put(url[, data[, config]])
axios.patch(url[, data[, config]])
반응형
'FrontEnd > React' 카테고리의 다른 글
React Next.js 프로젝트 생성하기. (0) | 2023.07.18 |
---|---|
[React] constructor() 생성자 사용법 (1) | 2020.02.03 |
[React] 로또 당첨 번호 API 사용하여 Get API 만들기, 화면 호출하기 - 로또 번호 랜덤 생성 사이트 만들어 보기 7편 (9) | 2020.01.27 |
[React] Javascript 로또 번호 생성 알고리즘 - 로또 번호 랜덤 생성 사이트 만들어 보기 6편 (5) | 2020.01.24 |
[React] props 하위 Component 값 전달하기 - 로또 번호 랜덤 생성 사이트 만들어 보기 5편 (0) | 2020.01.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Python
- React 프로젝트 생성
- LeetCode 알고리즘 공부
- Component
- 에라토스테네스
- k8s metrics-server
- LeetCode 5월 챌린지
- CHATGOT
- 노드
- LeetCode 30일 챌린지
- vscode
- 리엑트
- 넘파이
- Node
- 버츄얼스튜디오코드
- react
- Java
- 파이썬
- k8s metrics-server running
- git
- 퍼셉트론
- GPT서비스
- 파이썬 numpy
- LeetCode 풀이
- numpy
- Java leetcode
- 30 Day LeetCode Challenge
- GPTGOT
- 지도학습
- 머신러닝
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함