#JavaScript XMLHttpRequest 파일 업로드하기
jquery XMLHttpRequest를 이용해서 GET, POST 전송과 파일 업로드까지 알아보도록 하겠습니다. 먼저 GET 전송하기! $('#btn_export').click(function () { const tag_no = $('#tag_selector2').val(); const r = new XMLHttpRequest(); r.open('GET', '/target/exportTarget?tag_no=' + tag_no, true); r.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); let fileName = null; //if you have the fileName header available r.withCred..
2020. 1. 12. 21:41