less than 1 minute read

Axios란?

Axios는 브라우저, Node.js를 위한 Promise API를 활용하는 HTTP 비동기 통신 라이브러리 아다.

(백엔드랑 프론트엔드랑 통신을 쉽게하기 위해 Ajax와 더불어 사용한다)

Axios 특징

  • 운영 환경에 따라 브라우저의 XMLHttpRequest 객체 또는 Node.js의 http api 사용

  • Promise(ES6) API 사용
  • 요청과 응답 데이터의 변형
  • HTTP 요청 취소
  • HTTP 요청과 응답을 JSON 형태로 자동 변경

GET

axios.get(url,[,config])	

POST

axios.post("url주소",{
    	data객체
    },[,config])

DELETE

axios.delete(URL,[,config]);

PUT

axios.put(url[, data[, config]])

Tags:

Categories:

Updated:

Leave a comment