spring #ajax1 Spring Ajax Post방식 사용 방법 1. @RequestParam으로 값 받기type:get,dataType: text,contentType: application/json; charset=UTF-8-데이터를 URL에 답아서 보낸다. AJAX 기본 let xhr = new XMLHttpRequest(); xhr.open("POST", "/url", true); xhr.setRequestHeader("content-type", "application/json"); xhr.onreadystatechange = () => { if (xhr.readyState == 4 && xhr.status == 200) { let recResult = JSO.. 2023. 8. 4. 이전 1 다음