세얼간이코딩 2020. 7. 8. 20:35
반응형

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: "POST",
    data: {
    데이터
    }
  });

로 보내면 됩니다. get은 req.query, post는 req.body에서 정보를 받아 볼 수 있습니다.

반응형