[JS] Javascript에서 Axios 사용하기
1. 라이브러리 추가 2. axios 사용법axios.get(url 주소)axios.post(url 주소, data 객체)//기본적으로 axios 메소드는 promise 객체를 return한다.axios .get(url 주소) .then(function(res){ // 성공 처리 }) .catch(function(error){ // 실패 처리 }) 3. axios 사용const url = "https://random-word-api.herokuapp.com/word?number=100";axios.get(url).then(function(res){ const status = res.status; const data = res.data; console.l..
JavaScript
2024. 6. 14. 14:21
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- StringBuilder
- Replace
- 프로그래머스
- 콜백 큐
- 중첩스코프
- useeffet
- 마진과 패딩의 차이점
- 배열만들기1
- Object.clone()
- 렌더링 과정
- replace와 replaceAll의 차이점
- SQL 개발자
- 브라우저의 기본 구조
- SQLD
- 블록스코프
- rep;ㅁce
- nodelist
- 배열 만들기3
- replaceAll
- 호이스팅
- 문자열 반복하기
- fsd 아키텍처
- fsd 구조
- 신입개발자 면접 준비
- 대소문자 변환
- 스코프
- 엑셀 파일 추출
- startsWith()
- n 번째 원소부터
- Java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함