91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用easyui從servlet傳遞json數據到前端頁面

發布時間:2021-07-20 10:53:31 來源:億速云 閱讀:125 作者:小新 欄目:web開發

這篇文章給大家分享的是有關如何使用easyui從servlet傳遞json數據到前端頁面的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

 兩種方法獲取的數據在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" 
      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"  toolbar="#toolbar">
</table>

js代碼:

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}
    ]]   
  });
});

感謝各位的閱讀!關于“如何使用easyui從servlet傳遞json數據到前端頁面”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

隆德县| 宁国市| 新巴尔虎左旗| 夏津县| 桂平市| 南漳县| 鹤壁市| 翁牛特旗| 丰原市| 荣成市| 四子王旗| 二连浩特市| 会理县| 田林县| 汪清县| 井冈山市| 荆州市| 西贡区| 土默特右旗| 米脂县| 河北省| 油尖旺区| 昌江| 都江堰市| 永城市| 东山县| 连山| 益阳市| 灵石县| 吉隆县| 眉山市| 双鸭山市| 贡山| 永安市| 延川县| 兴业县| 西乡县| 新平| 广丰县| 土默特左旗| 阳东县|