Ajax Post提交案例及SpringMVC註解@RequestMapping取不到參數值解決辦法

來源:互聯網
上載者:User

標籤:

var xmlHttp; //定義變數,用來建立xmlHttp對象function ajaxfunction(url,onreadystatechangMethod,param){ // 建立xmlHttp,ajax開始    if(window.XMLHttpRequest){//非IE瀏覽器及IE7(7.0及以上版本),用xmlHttp對象建立        xmlHttp=new XMLHttpRequest();    }else if(window.ActiveXObject){ //IE(6.0及以下版本)瀏覽器用activexobject對象建立,如果使用者瀏覽器禁用了ActiveX,可能會失敗.        xmlHttp=new ActiveXObject("Microsoft.XMLHttp");    }         if(xmlHttp){//成功建立xmlHttp        param=encodeURI(param);  //URL編輯,解決亂碼問題        param=encodeURI(param);        xmlHttp.open("post",url,false); //與服務端建立串連(請求方式post或get,地址,true表示非同步)        xmlHttp.onreadystatechange = onreadystatechangMethod; //指定回呼函數        xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=UTF-8");//post提交設定項        xmlHttp.send(param); //發送請求       }}

 SpringMVC中的@RequestMapping修飾的方法在正常情況下雖然可以直接在參數列表中聲明參數,但如果在Ajax的Post方式提交時是不會取到值的,所以要用最原始的方法擷取參數,
 如果參數中有大量資料,最好用new String接收

@RequestMapping(value = "/page/video/videoReply.do")    public String videoReply(HttpServletRequest request,            HttpServletResponse response) {  String strId = request.getParameter("strId");  String content = new String(request.getParameter("content"));    try {            content = java.net.URLDecoder.decode(content, "UTF-8");        } catch (UnsupportedEncodingException e) {            e.printStackTrace();        } return null;}

Ajax Post提交案例及SpringMVC註解@RequestMapping取不到參數值解決辦法

聯繫我們

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