스프링 에러 - url로 자료를 전송할때 한글깨짐 오류
Back-End/Problems 2020. 11. 10. 18:54크롬이나 파이어폭스는 url로 자료 전송시 자동으로 문자셋이 수정되어서 전송되지만, 인터넷 익스플로러에서는 문자셋이 수정되지 않기때문에
한글 자료를 전송할 시 에러가 발생한다.
그렇기 때문에 get방식을 하기 전에 앞쪽에 encodeURI를 붙이고 보낼 자료를 괄호( )안에 넣고 자료를 전송하면 한글이 깨지지 않고 전송이 된다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 |
$(function(){
//댓글 수정 버튼
$("#btn_reply_Update").click(function(){
if(confirm("수정 하시겠습니까?")){
var rno = $("#rno").val();
var r_content = $("textarea#r_content").text();
var user_id = $("#user_id").val();
var member_bno = $("#member_bno").val();
var curPage = $("#curPage").val();
var search_option = $("#search_option").val();
var keyword = $("#keyword").val();
document.form1.action="reply_update.do?rno="+rno+"&r_content="+encodeURI(r_content)+"&user_id="+user_id+"&member_bno="+member_bno+"&curPage="+curPage+"&search_option="+search_option+"&keyword="+keyword;
document.form1.submit();
alert("댓글이 수정되었습니다.")
}
}); |
cs |
출처
'Back-End > Problems' 카테고리의 다른 글
오라클 데이터베이스 에러 (상태: 실패 -테스트 실패: IO 오류: The Network Adapter could not establish the connection) (1) | 2020.11.11 |
---|---|
오라클 에러 ORA-01727 numeric precision specifier is out of range (1 to 38) (0) | 2020.11.11 |
XML에서 부등호 관련 에러 (The content of elements must consist of well-formed character data or markup.) (0) | 2020.11.10 |
카카오톡 로그인 관련 (0) | 2020.11.10 |
스프링 에러 - Request method 'POST' not supported (3) | 2019.08.20 |