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
- Next.js
- 백준
- iP
- Spread
- nvm
- 기초
- TCPvsUDP
- 프로토타입
- 파이썬
- react-firebaseui
- firebaseui
- youtube iframe
- Rest
- React
- react-native
- 다리놓기
- mac
- nvmrc
- 리액트
- 자바스크립트
- 커스텀알림
- JS
- yarn-berry
- 파이어베이스로그인
- 커스텀알락
- Python
- leetcode977
- css
- leetcode189
- 구조분해할당
Archives
- Today
- Total
목록Fetch (1)
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.j..
개발/웹
2022. 5. 31. 12:30