Ajax程式開發中常見問題

來源:互聯網
上載者:User
Ajax程式開發中常見問題,看下文章或許你就少犯了許多錯誤了。

1.ajax,action中response返回的xml文檔格式錯誤時,eclipse debug進入不到action中.
    2.ajax緩衝問題,需要加入xmlHttp.setRequestHeader("If-Modified-Since","0");便可解決.
    3.如果不是ajax提交,而設定了PrintWriter out = response.getWriter();則jsp會產生中文亂碼.
    4.ajax返回xml亂碼的原因
    response.setContentType("text/xml;charset=GBK");
    PrintWriter out = response.getWriter();
    這樣才起作用,如果這樣:
    PrintWriter out = response.getWriter();
    response.setContentType("text/xml;charset=GBK");
    那麼response.setContentType("text/xml;charset=GBK");就不起作用了所以返回是亂碼,這個問題搞了很久,代碼還得仔細看啊.
    5.ajax表單提交
    xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
    由於傳過去的是utf-8編碼的,所以在action 或servlet中接受時要進行相應轉碼.
 



相關文章

聯繫我們

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