$.ajax({
dataType : 'json'type : 'POST',url : 'http://localhost/test/test.do',data : {id: 1, type: '商品'},success : function(data){ } } );
問題: 提交後後台action程式時,取到的type是亂碼
解決方法:
方法一:提交前採用encodeURI兩次編碼,記住一定是兩次
1.修改以下代碼
data:{id:1, type:encodeURI(encodeURI('商品'))}
2.在後台action要對取得的字串進行decode
1、String type = request.getParameter(“type”);
2、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是沒有的
一、測試環境 jQuery:1.3.2
tomcat:5.5.17
二、測試方法
1.使用get方式
二、測試方法
1.使用get方式
伺服器端java程式碼: 複製程式碼
程式碼如下:
String name = new String(request. getParameter("name").getBytes("iso8859-1"),"utf-8");
程式碼如下:
$.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);
});
結果:正確顯示 複製程式碼
程式碼如下:
結果:亂碼
2.post方式
2.post方式
複製程式碼
程式碼如下:
程式碼如下:
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);
結果:正確顯示 複製程式碼 程式碼如下:
$. url: "3.jsp",type: "post",data: {name:"中文"},success: function(response){ alert(response); }}); 結果:正確顯示 複製程式碼 程式碼:
$.post("3.jsp", { name: "中文" },function(response){
alert(response);
});
結果:正確顯示
代碼如下:alert(response);
});
結果:正確顯示
三、使用filter
複製程式碼
程式碼如下
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
HttpServletRequest reqquest (Httal -With") != null && req.getHeader("X-Requested-With").equalsIgnoreCase("XMLHttpRequest")) {
request.setCharacterEncoding("utf-8");
} else {
request.setCharacterEncoding("gbk");
}
chain.doFilter(request, response);
}
jQuery在使用加入X-Requested-With,值為:XMLHttpRequest,filter中判斷是jQuery的ajax請求時就把字元編碼設為utf8,這樣可以解決post提交中的中文亂碼問題,不需要在程式碼中設定request.setCharacterEncoding( "UTF-8");
對於get方式的中文亂碼問題,建議不使用get方式提交中文,統統改為post ^-^
為了和prototype.js處理中文的方式一致,可以使用以下的方式,自訂header中的屬性RequestType
複製程式碼
程式碼如下:
程式碼如下:
程式碼如下:
程式碼如下:
程式碼如下:
程式碼如下:
程式碼如下:beforeSend: function(XMLHttpRequest){ XMLHttpRequest.setRequestHeader("RequestType", "ajax");
alert("開始");
},
success: function(data, textStatus){
alert(data);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
alert("錯誤:" textStatus);
},
complete: function(XMLHttpRe. >alert("完成:" textStatus);
}
});
filter程式碼如下: 複製程式碼 程式碼如下: public void doFilter(ServletRequest request, ServletResponse response, HttpServletRequest req = (HttpServletRequest) request; if (req.getHeader("RequestType") != null && req.getHeader("RequestType").equalsIgnoreCase("ajax"))) { } else { request.setCharacterEncoding("gbk"); } chain.doFilter(request, response); }