본문 바로가기

Code/web-frontend

axios 사용해보기

 

 

yarn add axios

 

import axios from "axios";

 

 

async function send() {

      const response = await axios.post("http://localhost:8000/survay", {

        context: JSON.stringify(result),

      });

}