본문 바로가기

Computer Science/[dev]web

axios 사용해보기

728x90

 

 

yarn add axios

 

import axios from "axios";

 

 

async function send() {

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

        context: JSON.stringify(result),

      });

}

728x90