欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery中文亂碼的多種解決方法

 更新時間:2013年06月21日 11:28:27   作者:  
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);
           }
        });

其中當使用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亂碼問題解決
一、測試環(huán)境
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方式提交中文,統(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("錯誤:" + 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);
}

相關文章

最新評論