国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

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

2019-11-20 22:38:03
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

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í),無(wú)論前臺(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")來(lái)轉(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亂碼問(wèn)題解決
一、測(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提交中的中文亂碼問(wèn)題,不需要在代碼中設(shè)置request.setCharacterEncoding("UTF-8");
對(duì)于get方式的中文亂碼問(wèn)題,建議不使用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);
}

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 巫溪县| 桓仁| 伊春市| 钦州市| 新乐市| 理塘县| 龙门县| 石台县| 抚顺市| 黔西| 新宾| 庐江县| 石家庄市| 纳雍县| 汉寿县| 灵寿县| 沧州市| 扶风县| 辽宁省| 个旧市| 京山县| 卓尼县| 大丰市| 肥西县| 怀宁县| 凌云县| 宿松县| 扶风县| 怀安县| 华容县| 碌曲县| 札达县| 铜山县| 凤冈县| 桃源县| 土默特右旗| 新和县| 井陉县| 广安市| 台东市| 南丹县|