axios
2020. 7. 8.
https://www.npmjs.com/package/axios axios Promise based HTTP client for the browser and node.js www.npmjs.com npm install axios axios를 사용하기 위해 임포트해줍니다. import axios from "axios" const test = axios({ url: 보낼 url설정, method: "get || post 등 원하는 method를 적어줍니다.", 보낼 데이터를 적어줍니다. }) get이라면 const test = axios({ url: 경로, method: "GET", params: { 데이터 } }); post라면 const response = axios({ url: 경로, method: "..