ajax接收後台資料在html頁面顯示,ajax接收後台頁面

來源:互聯網
上載者:User

ajax接收後台資料在html頁面顯示,ajax接收後台頁面

Java代碼

1         PrintWriter out=response.getWriter();       //向用戶端發送字元資料2         response.setContentType("text/text");          //佈建要求以及響應的內容類型以及編碼方式3         response.setCharacterEncoding("UTF-8");4         JSONArray  json = JSONArray.fromObject(newsList);   //將newsList對象轉換為json對象5         String str = json.toString();                //將json對象轉換為字串6         out.write(str);                     //將str字元傳輸到前台       

Ajax代碼

 

 1  $(document).ready(function() { 2     $.ajax({ 3     url : "newsservlet",//請求地址 4     dataType : "json",//資料格式  5     type : "post",//請求方式 6     async : false,//是否非同步請求 7     success : function(data) {   //如何發送成功 8     var html = ""; 9     for(var i=0;i<data.length;i++){    //遍曆data數組10             var ls = data[i];     11             html +="<li><a href='second page text.html?newsid="+ls.news_id+"'class='infNews_wrod_a'><span>"+ls.news_name+"</span></a><span class='date'>"+ls.news_time+"</span></li>";12         }13         $("#ulul").html(html); //在html頁面id=ulul的標籤裡顯示html內容14     },15 })16 })

 

 HTML頁面

 

1   <ul id="ulul">2               3              </ul>

 

 

 

 在ajax中,"#"代表的是一個標籤的id,"."代表的是一個標籤的class

 

在Java後台, 佈建要求以及響應的內容類型以及編碼方式  必須寫在 json對象轉換字串 之前 ,否則會造成json中文亂碼

 

相關文章

聯繫我們

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