JavaScript/Ajax, Axios(비동기 통신)
2020. 3. 21.
XMLHttpsRequest, axios 로 백엔드 서버에 요청 보내 보기
vue 파일 Board list: Loading... APi result : {{ apiRes }} Board 1 Board 2 fetchData() { this.loading = true; //요청하기 const req = new XMLHttpRequest(); req.open("GET", "http://localhost:3000/health"); //클라이언트에서 백엔드서버로 요청을 보낸다 req.send(); //로딩이 완료되면 req.addEventListener("load", () => { this.loading = false; this.apiRes = { status: req.status, statusText: req.statusText, response: JSON.parse(req.respo..