XMLHttpRequest를 이용한 동기 방식의 request
카테고리 없음
2022. 3. 23. 13:29
아래 소스코드는 jQuery에서 제공하는 ajax가 모듈이 질려, XMLHttpRequest를 이용하여 동기/POST 방식으로 HTTP request와 response를 수행하는 함수를 구현한 것이다. 코드가 간단하다보니 상세한 설명은 생략. function Req() { this.url = undefined this.data = {} this.method = "POSt" this.responseType = "json" this.requestHeader = "application/x-www-form-urlencoded" this.request = new XMLHttpRequest() this.getQueryString = () => { return Object.entries(this.data).map(e..