您好,登錄后才能下訂單哦!
今天小編給大家分享的是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表格如何實現后臺分頁就分享到這里了,希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。