DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery中文亂碼的多種解決方法
jquery中文亂碼的多種解決方法
編輯:JQuery特效代碼     

1、使用$.ajax出現的中文亂碼的解決方案:

. 代碼如下:
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);
}
});

其中當使用dataUrl中的&方式提交時,無論前台是使用encodeURI或者encodeURIComponent又或者escape把中文轉碼,提交到Action中都是亂碼,並不是想要的%e6%b1%89%e5%ad%97這種轉後編碼。即使加上contentType也不行。

把dataUrl中的&方式提交修改為data:{name:value}的方式提交即可。

在Action中使用URLDecoder.decode(realname, "UTF-8")來轉碼即可轉換為中文了。使用UTF-8是因為Jquery的提交方式默認為UTF-8,即使把contentType中的charset修改其他,例如GBK,後台也把UTF-8修改GBK,都不能正確轉換。

jQuery ajax亂碼問題解決
一、測試環境
jQuery:1.3.2
tomcat:5.5.17
二、測試方法
1.使用get方式
服務器端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);
}});

結果:正確顯示
. 代碼如下:
$.ajax({url: "2.jsp",type: "get",data: "name=中文",success: function(response){
alert(response);
}});

結果:亂碼
. 代碼如下:
$.get("2.jsp", { name: "中文" },function(response){
alert(response);
});

結果:正確顯示
. 代碼如下:
$.get("2.jsp", "name=中文",function(response){
alert(response);
});

結果:亂碼

2.post方式
服務器端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);
}});

結果:正確顯示
. 代碼如下:
$.ajax({url: "3.jsp",type: "post",data: {name:"中文"},success: function(response){
alert(response);
}});

結果:正確顯示
. 代碼如下:
$.post("3.jsp", { name: "中文" },function(response){
alert(response);
});

結果:正確顯示
. 代碼如下:
$.post("3.jsp", "name=中文",function(response){
alert(response);
});

結果:正確顯示
三、使用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的時候會在header中加入X-Requested-With,值為:XMLHttpRequest,filter中判斷是jQuery的ajax請求時就把字符編碼設為utf8,這樣可以解決post提交中的中文亂碼問題,不需要在代碼中設置request.setCharacterEncoding("UTF-8");
對於get方式的中文亂碼問題,建議不使用get方式提交中文,統統改為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("錯誤:" + 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);
}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved