XHR
- XMLHttpRequest(XHR) 객체는 서버와 상호작용하기 위하여 사용된다.
- 전체 페이지의 새로고침 없이도 URL 로부터 데이터를 받아올 수 있다.
- AJAX(Asynchronos Javascript And XML)프로그래밍에 주로 사용된다.
사용 방법
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://localhost:3000/', true);
xhr.send(null);
- XMLHttpRequest()를 통해 오브젝트 생성을 한다.
- 그 후 open() 함수를 통해 메소드 방식, url, 그리고 비동기 여부를 설정한다.
- send(data) 로 설정한 방식대로 request를 보낸다.(data는 null이어도 된다.)
https://iotengineer.tistory.com/3
https://whitekeyboard.tistory.com/343