jquery的ajax()函數傳值中文亂碼解決方法介紹,須要的朋友能夠參考下java
代碼以下:jquery
$.ajax({
dataType : ‘json',type : ‘POST',url : ‘http://localhost/test/test.do',data : {id: 1, type: ‘商品'},success : function(data){ } } );
ajax
問題:
提交後後臺action程序時,取到的type是亂碼
解決方法:
方法一:提交前採用encodeURI兩次編碼,記住必定是兩次
1.修改如下代碼
json
複製代碼 代碼以下:tomcat
data:{id:1, type:encodeURI(encodeURI(‘商品'))}
服務器
2.在後臺action裏要對取得的字符串進行decode
一、String type = request.getParameter(「type」);
二、type = URLDecoder.decode(type, 「UTF-8″);
方法二:ajax配置contentType屬性,加上charset=UTF-8
在ajax方法中加入如下參數
contentType: 「application/x-www-form-urlencoded; charset=UTF-8″使用其它js框架或者xhr都是差很少,設置header中contentType便可,
這裏關鍵是charset=UTF-8,若是沒有這個,是不行的,默認jQuery裏的contentType是沒有的
1、測試環境
jQuery:1.3.2
tomcat:5.5.17
2、測試方法
1.使用get方式
服務器端java代碼:
app
複製代碼 代碼以下:框架
String name = new String(request.getParameter("name").getBytes("iso8859-1"),"utf-8");
jsp
客戶端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);
});
結果:正確顯示
3、使用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); }