用easyui從servlet傳遞json數據到前端頁面的兩種方法 兩種方法獲取的數據在servlet層傳遞的方法相同,下麵為Servlet中代碼,以查詢表中所有信息為例。 通過easyui包含的table標簽中的屬性來獲取後端傳遞的數據 jsp代碼: url:傳遞數據的地址(本篇使用的是servl ...
兩種方法獲取的數據在servlet層傳遞的方法相同,下麵為Servlet中代碼,以查詢表中所有信息為例。
//重寫doGet方法 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub request.setCharacterEncoding("UTF-8");//防止request請求時中文數據出現亂碼 String flag = request.getParameter("flag");//通過flag值判定增刪改查操作 if(flag == null) { queryOffer(request,response); }else if("add".equals(flag)){ addOffer(request,response); }else if("del".equals(flag)) { deleteOffer(request,response); }else if("update".equals(flag)) { updateOffer(request,response); } } //處理從資料庫查詢到的數據以返回前端 protected void queryOffer(HttpServletRequest request, HttpServletResponse response) { // TODO Auto-generated method stub List<Offer> offers = new ArrayList<Offer>(); offers = offerservice.queryOfferService(); try { String str=JSONArray.toJSONString(offers);//將資料庫查詢到的集合轉換成JSON字元串 System.out.println(str); response.setContentType("text/html;charset=utf-8");//防止response時中文數據亂碼 response.getWriter().print(str);//向前臺傳遞字元串 } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } }
-
通過easyui包含的
table
標簽中的屬性來獲取後端傳遞的數據jsp代碼:
-
url
:傳遞數據的地址(本篇使用的是servlet,所以路徑為servlet路徑;也可以使用action或者php) -
field
:傳遞的JSON數據的欄位名稱,就是資料庫的欄位(列名)
<table id="dg" title="用戶列表" class="easyui-datagrid" style="width:80%;height:250px" url="<%=request.getContextPath() %>/OfferServlet" toolbar="#toolbar" rownumbers="true" fitColumns="true" singleSelect="true"> <thead> <tr> <th field="offerid" width="50">商品ID</th> <th field="offername" width="100">商品名稱</th> <th field="offertype" width="200">商品類型</th> <th field="offerdesc" width="200">商品描述</th> <th field="price" width="200">商品價格</th> </tr> </thead> </table>
-
-
通過JS來傳遞JSON數據到前端
jsp代碼:
<table id="dg" title="用戶列表" class="easyui-datagrid" style="width:1000px;height:250px" toolbar="#toolbar"> </table>
-
title
:顯示的表格列名
$(function(){ $('#dg').datagrid({ url:"${pageContext.request.contextPath}/OfferServlet",//servlet路徑 columns:[[ {field:'offerid',title:'商品ID',width:100}, {field:'offername',title:'商品名稱',width:100}, {field:'offertype',title:'商品類型',width:100}, {field:'offerdesc',title:'商品描述',width:300}, {field:'price',title:'商品價格',width:150} ]] }); });
-