ajax傳送參數含有特殊字元的快速解決方案_AJAX相關

來源:互聯網
上載者:User

JQuery AJAX中遇到這樣一個問題,參數中包含特殊字元,比如&'#@等, 這時執行AJAX的時候就會出問題,因為所傳的參數變了.看個樣本就明白:

方案一:

$.ajax({  url: '/ashx/ajax.ashx',  type: 'post',  data: 'option=delete&name=11&adb, success: function (data) { if (data != 'error ') { } } }); '

上面執行的ajax就是非同步刪除一個name為 11&abd 的資料 當請求到ajax.ashx頁面時,我們擷取到的name參數為11 執行操作後會發現其實刪除了name 為 11的資料,而沒有刪除 name 為 11&abc 的資料 這是由於有&特殊字元,把以前的倆個參數變成了三個參數 option,name,abc 這時就需要用另外一種方法傳遞參數:

$.ajax({  url: '/ashx/ajax.ashx',  type: 'post',  data: {    'option': 'delete',    'name': '11&adb'  },  success: function(data) {    if (data != 'error') {}  }});

採用上面的json格式傳遞參數就可以避免特殊字元引起的參數錯誤問題.

方案二: 統一編碼UTF-8.

1.JSP頁面:

<%@ page language="java" pageEncoding="UTF-8"%>

2.Ajax.js頁面:傳遞參數時,可能出現特殊字元的參數用 escape(encodeURIComponent())兩函數進行轉碼,傳遞到後台!

var url = "/ZX/servlet/AddMemoServlet memo=" + memoCode + "&otherMemo=" + escape(encodeURIComponent(otherMemo)) + "&applNo=" + applNo.innerText.substr(0, 16); //alert("url="+url); xmlHttp.open("POST", url, true); xmlHttp.onreadystatechange = doMemo; xmlHttp.send(null); 

3.伺服器端接收傳遞的資料 比如:一個servlet的doGet方法中: request.setCharacterEncoding("gb2312"); response.setContentType("text/xml;charset=utf-8"); response.setHeader("Cache-Control", "no-cache"); ...... //以下解決Ajax中url傳遞的參數值中包含特殊字元,後端解析出錯的問題:以utf-8以方式解碼 java.net.URLDecoder urlDecoder=new java.net.URLDecoder(); String otherMemo = urlDecoder.decode(request.getParameter("otherMemo"),"utf-8"); logger.info("otherMemo:" + otherMemo);

以上這篇ajax傳送參數含有特殊字元的快速解決方案就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.