中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Layui表格如何實現后臺分頁

發布時間:2020-04-30 10:51:24 來源:億速云 閱讀:1065 作者:小新 欄目:web開發

今天小編給大家分享的是Layui表格如何實現后臺分頁,相信很多人都不太了解,為了讓大家更加了解Layui,所以給大家總結了以下內容,一起往下看吧。一定會有所收獲的哦。

Layui表格如何實現后臺分頁

使用Layui表格實現后臺分頁的方法:

<table class="layui-table" lay-data="{width: 892, height:332,url:'', page:true, id:'idTest'}" lay-filter="demo">
  <thead>
    <tr>
      <th lay-data="{type:'checkbox', fixed: 'left'}"></th>
      <th lay-data="{field:'id', width:80, sort: true, fixed: true}">id</th>
      <th lay-data="{field:'menubarid', width:80}">菜單id</th>
      <th lay-data="{field:'name', width:80, sort: true}">菜名</th>
      <th lay-data="{field:'price', width:80}">價格</th>
      <th lay-data="{field:'status', width:160}">狀態</th>
      <th lay-data="{fixed: 'right', width:178, align:'center', toolbar: '#barDemo'}"></th>
    </tr>
  </thead>
</table>

使用layui自動渲染生成表格,默認以get方式從前端獲得參數page和limit

int page = Integer.parseInt(request.getParameter("page"));
int limit = Integer.parseInt(request.getParameter("limit"));	
int count = menuDao.searchcount();             // 查找數據條數
int page_temp = page;
int limit_temp = limit;
if (count < page * limit) {
	limit = count - (page - 1) * limit;
}
page = (page_temp - 1) * limit_temp;

使用的是mysql,第一條是查找行數目,第二條是分頁查詢語句,把page和limit分別傳到兩個問號里就行了。

 select  count(*) from menu 
select * from menu limit ?,?

最后轉為json前把count的值改為從sql查詢得到的行數目。

String layjson ="{\"code\":0,\"msg\":\"\",\"count\":"+getcount()+",\"data\":["+data+"]}";

關于Layui表格如何實現后臺分頁就分享到這里了,希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

延津县| 墨玉县| 宁明县| 仪征市| 格尔木市| 长治市| 团风县| 平武县| 昆明市| 玛曲县| 涞水县| 汉阴县| 大埔区| 十堰市| 奉化市| 榕江县| 芷江| 鄯善县| 金寨县| 绥芬河市| 昌宁县| 来凤县| 兴海县| 商南县| 珲春市| 天峻县| 任丘市| 常州市| 准格尔旗| 陈巴尔虎旗| 达孜县| 米易县| 于都县| 比如县| 汤阴县| 桑植县| 江陵县| 兴安盟| 屏东市| 香港| 广安市|