[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
- 블록스코프
- 중첩스코프
- 배열만들기1
- 호이스팅
- 프로그래머스 qr code
- Object.clone()
- 신입개발자 면접 준비
- 배열 만들기3
- 렌더링 과정
- 콜백 큐
- replaceAll
- 스코프
- startsWith()
- 문자열 반복하기
- 프로그래머스 세로 읽기
- Java
- Replace
- rep;ㅁce
- SQL 개발자
- 프로그래머스
- 엑셀 파일 추출
- nodelist
- 브라우저의 기본 구조
- 마진과 패딩의 차이점
- 대소문자 변환
- replace와 replaceAll의 차이점
- SQLD
- n 번째 원소부터
- StringBuilder
- useeffet
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함