jQuery Ajax請求返回對象列表資料

來源:互聯網
上載者:User

(1) 所需檔案:

               Json-simple jar包

 

               :http://code.google.com/p/json-simple/

 

(2) 伺服器端封裝對象列表

 

               1)      
建立一個List

 

                        List<Map<String,String>> testList
= newLinkedList<Map<String,String>>();

 

               2)      
將對象放入Map中,迴圈將Map放入List中

 

                       for(…){ //此處可以是從資料庫中查出的對象列表,然後把需要的屬性放入Map

    

                            Map<String,String> testMap = new LinkedHashMap<String,String>();

    

                            testMap.put(“key”,”value”);

 

                            testList.add(testMap);

                       }

 

                3)      
將List轉換成json string

 

                        String jsonString = JSONValue.toJSONString(testList);

 

                 4)      
回傳到用戶端

           

                        PrintWriter  out = response.getWriter();

                        out.print(jsonString);

                        out.flush();

 


(3) 用戶端顯示列表資訊

                   $.each(data, function(houseIndex,house){

                    //houseIndex就是索引,house就是一個對象

                    var houseId = house[‘key’]    //根據一個key值取出對應的value值

 

相關文章

聯繫我們

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