Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- leetcode189
- mac
- 커스텀알림
- 커스텀알락
- youtube iframe
- react-native
- css
- 자바스크립트
- Next.js
- 기초
- Rest
- iP
- 리액트
- 파이어베이스로그인
- 백준
- leetcode977
- yarn-berry
- 다리놓기
- 프로토타입
- 구조분해할당
- React
- firebaseui
- JS
- react-firebaseui
- nvmrc
- Spread
- nvm
- TCPvsUDP
- 파이썬
- Python
Archives
- Today
- Total
JadeCode
[리뷰] Fetch, Axios 본문
비동기 요청의 가장 대표적인 사례는 단연 네트워크 요청이다. 그중에서 URL로 요청하는 경우가 가장 흔한데, 이것을 가능하게 해 주는 API가 바로 fetch API이다.
fetch API
// Promise ver
let url = "URL주소";
fetch(url)
.then((response) => response.json())
.then((json) => console.log(json))
.catch((error) => console.log(error));
// Async/Await ver
let url = "URL주소";
async function request(){
const response = await fetch(url);
}
request()
Axios
Axios는 브라우저, Node.js를 위한 Promise API를 활용하는 HTTP 비동기 통신 라이브러리이다. fetch API보다 사용이 간편하면서 추가적인 기능들이 포함되어 있다.
Fetch API | Axios |
빌트인 API라 별도의 설치가 필요 없음 | 써드파티 라이브러리로 설치가 필요 |
.json() 메서드를 사용해야 함 | 자동으로 JSON데이터 형식으로 변환 됨 |
// 사용법
npm install axios
axios.get("url"[, config])
axios.post("url"[, data[, config]])
// get
// fetch
fetch('URL', { method: 'GET' })
.then((response) => response.json())
.then((json) => console.log(json))
.catch((error) => console.log(error));
// axios
import axios from 'axios';
axios
.get('URL')
.then((response) => {
const { data } = response;
console.log(data);
})
.catch((error) => console.log(error));
// post
// fetch
fetch('URL', {
method: 'POST',
headers: {
// JSON의 형식으로 데이터를 보내준다고 서버에게 알려주는 역할
'Content-Type': 'application/json',
},
body: JSON.stringify({ nickName: 'abc', age: 20 }),
})
.then((response) => response.json())
.then((json) => console.log(json))
.catch((error) => console.log(error));
// axios
import axios from 'axios';
axios
.post('URL', { nickName: 'abc', age: '20' })
.then((response) => {
const { data } = response;
console.log(data);
})
.catch((error) => console.log(error));
'개발 > 웹' 카테고리의 다른 글
[리뷰] HTTP, URL/URI, SSR/CSR (0) | 2022.06.03 |
---|---|
리액트 (0) | 2022.06.02 |
[리뷰] 비동기 (0) | 2022.05.30 |
[리뷰] 프로토타입 (0) | 2022.05.27 |
[리뷰] 객체 지향 프로그래밍 (0) | 2022.05.26 |
Comments