jquery中文亂碼的多種解決方法
1、使用$.ajax出現(xiàn)的中文亂碼的解決方案:
var _realname = $("input[name='_searchName']").val();
var termcourseId = '<%=termid%>';
var classId = '<%=classid%>';
var url = "/addressbook/studentListNoPage.do";
//var dataUrl = "formMap.TERMCOURSE_ID="+termcourseId+"&formMap.CLASS_ID="+classId+"&formMap.IS_ONLINE=all&formMap.REALNAME="+_realname;
$.ajax({
type: "POST",
url: url,
dataType:"json",
data: {
"formMap.TERMCOURSE_ID":termcourseId,
"formMap.CLASS_ID":classId,
"formMap.IS_ONLINE":"all",
"formMap.REALNAME":encodeURI(_realname)
},
contentType: "application/x-www-form-urlencoded; charset=utf-8",
success: function(data){
data = eval(data);
var html = "";
$("#allUnselectedUser").html(html);
},
error : function(XMLHttpRequest, textStatus, errorThrown){
alert(textStatus);
}
});
其中當(dāng)使用dataUrl中的&方式提交時(shí),無論前臺(tái)是使用encodeURI或者encodeURIComponent又或者escape把中文轉(zhuǎn)碼,提交到Action中都是亂碼,并不是想要的%e6%b1%89%e5%ad%97這種轉(zhuǎn)后編碼。即使加上contentType也不行。
把dataUrl中的&方式提交修改為data:{name:value}的方式提交即可。
在Action中使用URLDecoder.decode(realname, "UTF-8")來轉(zhuǎn)碼即可轉(zhuǎn)換為中文了。使用UTF-8是因?yàn)镴query的提交方式默認(rèn)為UTF-8,即使把contentType中的charset修改其他,例如GBK,后臺(tái)也把UTF-8修改GBK,都不能正確轉(zhuǎn)換。
jQuery ajax亂碼問題解決
一、測(cè)試環(huán)境
jQuery:1.3.2
tomcat:5.5.17
二、測(cè)試方法
1.使用get方式
服務(wù)器端java代碼:
String name = new String(request.getParameter("name").getBytes("iso8859-1"),"utf-8");
客戶端js代碼:
$.ajax({url: "2.jsp",type: "get",data: {name:"中文"},success: function(response){
alert(response);
}});
結(jié)果:正確顯示
$.ajax({url: "2.jsp",type: "get",data: "name=中文",success: function(response){
alert(response);
}});
結(jié)果:亂碼
$.get("2.jsp", { name: "中文" },function(response){
alert(response);
});
結(jié)果:正確顯示
$.get("2.jsp", "name=中文",function(response){
alert(response);
});
結(jié)果:亂碼
2.post方式
服務(wù)器端java代碼:
request.setCharacterEncoding("UTF-8");
String name = request.getParameter("name");
客戶端js代碼:
$.ajax({url: "3.jsp",type: "post",data: "method=testAjaxPost&name=中文",success: function(response){
alert(response);
}});
結(jié)果:正確顯示
$.ajax({url: "3.jsp",type: "post",data: {name:"中文"},success: function(response){
alert(response);
}});
結(jié)果:正確顯示
$.post("3.jsp", { name: "中文" },function(response){
alert(response);
});
結(jié)果:正確顯示
$.post("3.jsp", "name=中文",function(response){
alert(response);
});
結(jié)果:正確顯示
三、使用filter
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
HttpServletRequest req = (HttpServletRequest) request;
if (req.getHeader("X-Requested-With") != null && req.getHeader("X-Requested-With").equalsIgnoreCase("XMLHttpRequest")) {
request.setCharacterEncoding("utf-8");
} else {
request.setCharacterEncoding("gbk");
}
chain.doFilter(request, response);
}
jQuery在使用ajax的時(shí)候會(huì)在header中加入X-Requested-With,值為:XMLHttpRequest,filter中判斷是jQuery的ajax請(qǐng)求時(shí)就把字符編碼設(shè)為utf8,這樣可以解決post提交中的中文亂碼問題,不需要在代碼中設(shè)置request.setCharacterEncoding("UTF-8");
對(duì)于get方式的中文亂碼問題,建議不使用get方式提交中文,統(tǒng)統(tǒng)改為post ^-^
為了和prototype.js處理中文的方式一致,可以使用如下的方式,自定義header中的屬性RequestType
$.ajax({
url: "3.jsp",
type: "post",
data: {name:"中文"},
beforeSend: function(XMLHttpRequest){
XMLHttpRequest.setRequestHeader("RequestType", "ajax");
alert("開始");
},
success: function(data, textStatus){
alert(data);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
alert("錯(cuò)誤:" + textStatus);
},
complete: function(XMLHttpRequest, textStatus){
alert("完成:" + textStatus);
}
});
filter代碼如下:
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
HttpServletRequest req = (HttpServletRequest) request;
if (req.getHeader("RequestType") != null && req.getHeader("RequestType").equalsIgnoreCase("ajax"))) {
request.setCharacterEncoding("utf-8");
} else {
request.setCharacterEncoding("gbk");
}
chain.doFilter(request, response);
}
相關(guān)文章
使用異步controller與jQuery實(shí)現(xiàn)卷簾式分頁(yè)
這篇文章主要介紹了使用異步controller與jQuery實(shí)現(xiàn)卷簾式分頁(yè),使用異步controller與jQuery按需加載內(nèi)容,當(dāng)用戶開始通過網(wǎng)站的內(nèi)容滾動(dòng)時(shí)進(jìn)一步加載內(nèi)容。,需要的朋友可以參考下2019-06-06jquery實(shí)現(xiàn)動(dòng)態(tài)改變css樣式的方法分析
這篇文章主要介紹了jquery實(shí)現(xiàn)動(dòng)態(tài)改變css樣式的方法,結(jié)合實(shí)例形式分析了jQuery動(dòng)態(tài)操作css樣式的設(shè)置、獲取及應(yīng)用等相關(guān)操作技巧,需要的朋友可以參考下2019-05-05jQuery學(xué)習(xí)筆記之控制頁(yè)面實(shí)現(xiàn)代碼
每一段jQuery對(duì)應(yīng)一段html代碼,以標(biāo)記為準(zhǔn)則,css為共用代碼,每段代碼需獨(dú)立運(yùn)行。html和css代碼在文章尾部,如下例2012-02-02PHP結(jié)合jQuery實(shí)現(xiàn)紅藍(lán)投票功能特效
本文給大家分享的是jQuery + PHP+mysql完成的投票程序,功能不是太復(fù)雜,主要是效果非常不錯(cuò),有需要的小伙伴可以參考下2015-07-07jQuery可見性過濾器:hidden和:visibility用法實(shí)例
這篇文章主要介紹了jQuery可見性過濾器:hidden和:visibility用法,實(shí)例分析了:hidden和:visibility的功能及相關(guān)使用技巧,需要的朋友可以參考下2015-06-06jquery表單對(duì)象屬性過濾選擇器實(shí)例分析
這篇文章主要介紹了jquery表單對(duì)象屬性過濾選擇器,實(shí)例分析了jQuery選擇器的相關(guān)使用技巧,需要的朋友可以參考下2015-05-05