解決ajax提交表單時中文亂碼的問題

來源:互聯網
上載者:User

網上搜尋結合自己開發過程中遇到的情況,整理一下,以備忘:

Ajax表單提交資料出現亂碼和解決辦法

   //要傳遞的參數
   var queryString = "firstName=" + firstName + "&lastName=" + lastName
                          + "&birthday=" + birthday;    function  

  1. //GET方式提交   
  2. doRequestUsingGET() {   
  3.          createXMLHttpRequest();   
  4.         var url = "GetAndPostExample?" + queryString + "&timeStamp="  
  5.                            + new Date().getTime();   
  6.          xmlHttp.onreadystatechange = handleStateChange;   
  7.          xmlHttp.open("GET", url, true);   
  8.          xmlHttp.send(null);   
  9. }   
  10.   
  11. //POST方式提交   
  12. function doRequestUsingPOST() {   
  13.          createXMLHttpRequest();   
  14.         var url = "GetAndPostExample?timeStamp=" + new Date().getTime();   
  15.          xmlHttp.open("POST", url, true);   
  16.          xmlHttp.onreadystatechange = handleStateChange;   
  17.          xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");   
  18.          xmlHttp.send(queryString);   
  19. }  
當在servlet接收參數時,必須要這樣://當用POST方法時,一定要設定成utf-8,否則亂碼
String firstName = new String(request.getParameter("firstName").getBytes("ISO-8859-1"), "utf-8");
//當用GET方法時,要設定成GB2312,否則亂碼。
String lastName = new String(request.getParameter("lastName").getBytes("ISO-8859-1"), "GB2312");

在另一網友秋憶部落格,找到了另一種方法,以下是原文的內容:

前段時間寫JSP,使用AJAX以POST方式提交資料,如果是中文字元提交就會亂碼,後來寫ASP時用到AJAX以POST方式提交資料,中文一樣是亂碼。搜尋一下相關資料,問題應該是提交資料時是以UTF-8編碼提交,所以接收時如果使用GB2312或者其它中文編碼的話就會亂碼。

使用GET方式提交資料的時候,中文問題很好解決,setRequestHeader("Content-Type","text/html; encoding=gb18030")就可以了。但這個方法在POST方式中卻不起作用。大家都知道GET方式提交資料有長度限制,有時我們必須使用 POST方式來提交資料。

對於使用POST,JSP的解決方案如下:
使用escape(或encodeURI,兩個函數都是JavaScript的函數,功能基本相同,可以查一下相關的協助),但要使用兩次,這個是關鍵。

初始頁面內容如下(hello.jsp):
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>AJAX提交頁面</title>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<script type="text/javascript">
function justdo(){
    var post = "name=王力猛&email=wallimn@sohu.com&bokee=http://wallimn.bokee.com";
    post = encodeURI(post);
    post = encodeURI(post);    //兩次,很關鍵
    var xmlObj = new ActiveXObject("Msxml2.XMLHTTP");
    var URL = "act.jsp";    //檔案名稱需要調整成測試時的相應位置
    xmlObj.open("POST",URL,true);
    xmlObj.setRequestHeader("Cache-Control","no-cache");
    xmlObj.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
    xmlObj.send(post);    //注意:POST方式,使用這個來發送內容
}
</script>
</head>
<body>
<input type="button" value="提交" />
</body>
</html>


Ajax請求處理頁面(act.jsp)的內容如下:
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@page import="java.net.URLDecoder"%>
<html>
<head>
<title>ajax deal</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</head>
<body>
<%
//遍曆輸出參數內容。
for (Enumeration e = request.getParameterNames(); e.hasMoreElements();) {
    String h = (String)e.nextElement();
    String v = request.getParameter(h);
    String mm = java.net.URLDecoder.decode(v, "UTF-8");
    System.out.println("請求參數: " + h + " = " + mm);
}
%>
</body>
</html>

分析:當調用request.getParameter()函數時,會自動進行一次URI的解碼過程,調用時內建的解碼過程會導致亂碼出現。而URI編碼兩次後,request.getParameter()函數得到的是原資訊URI編碼一次的內容。再用可控的解碼函數 java.net.URLDecoder.decode()就可解出原始的正確的資訊。


對於ASP,可以在用戶端使用JavaScript的encodeURIComponent函數(其它編碼函數可能也行,沒有試)編碼兩次,然後ASP使用Request.Form接收後使用JavaScript的decodeURIComponent解碼一次:

初始頁面內容如下(hello.asp):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>AJAX提交頁面</title>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312">
<script type="text/javascript">
function justdo(){
    var post = "name=" + encodeURIComponent(encodeURIComponent("王力猛"));    //兩次
    var xmlObj = new ActiveXObject("Msxml2.XMLHTTP");
    var URL = "act.asp";    //檔案名稱需要調整成測試時的相應位置
    xmlObj.open("POST",URL,true);
    xmlObj.setRequestHeader("Cache-Control","no-cache");
    xmlObj.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
    xmlObj.send(post);    //注意:POST方式,使用這個來發送內容
}
</script>
</head>
<body>
<input type="button" value="提交" />
</body>
</html>

Ajax請求處理頁面(act.asp)的內容如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ajax deal</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</head>
<body>
<%
Dim context
context = decodeText(Request.Form("name"))
Response.Write("name=" & context)
%>
</body>
</html>
<script language="javascript" runat="server">
function decodeText(str){
    return (str == null ? "" : decodeURIComponent(str));
}
</script>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.