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

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

 更新時(shí)間:2013年06月21日 11:28:27   作者:  
jquery中文亂碼的多種解決方法,需要的朋友可以參考一下

1、使用$.ajax出現(xiàn)的中文亂碼的解決方案:

復(fù)制代碼 代碼如下:

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代碼:

復(fù)制代碼 代碼如下:

String name = new String(request.getParameter("name").getBytes("iso8859-1"),"utf-8");

客戶端js代碼:
復(fù)制代碼 代碼如下:

$.ajax({url: "2.jsp",type: "get",data: {name:"中文"},success: function(response){
        alert(response);
}});

結(jié)果:正確顯示
復(fù)制代碼 代碼如下:

$.ajax({url: "2.jsp",type: "get",data: "name=中文",success: function(response){
        alert(response);
}});

結(jié)果:亂碼
復(fù)制代碼 代碼如下:

$.get("2.jsp", { name: "中文" },function(response){
    alert(response);
});

結(jié)果:正確顯示
復(fù)制代碼 代碼如下:

$.get("2.jsp", "name=中文",function(response){
    alert(response);
});

結(jié)果:亂碼

2.post方式
服務(wù)器端java代碼:

復(fù)制代碼 代碼如下:

request.setCharacterEncoding("UTF-8");
String name = request.getParameter("name");

客戶端js代碼:
復(fù)制代碼 代碼如下:

$.ajax({url: "3.jsp",type: "post",data: "method=testAjaxPost&name=中文",success: function(response){
    alert(response);
}});

結(jié)果:正確顯示
復(fù)制代碼 代碼如下:

$.ajax({url: "3.jsp",type: "post",data: {name:"中文"},success: function(response){
    alert(response);
}});

結(jié)果:正確顯示
復(fù)制代碼 代碼如下:

$.post("3.jsp", { name: "中文" },function(response){
    alert(response);
});

結(jié)果:正確顯示
復(fù)制代碼 代碼如下:

$.post("3.jsp", "name=中文",function(response){
    alert(response);
});

結(jié)果:正確顯示
三、使用filter
復(fù)制代碼 代碼如下:

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
復(fù)制代碼 代碼如下:

$.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代碼如下:
復(fù)制代碼 代碼如下:

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)文章

最新評(píng)論