您好,登錄后才能下訂單哦!
先上效果圖:
前端數(shù)據(jù)表格:
<div class="x-body"> <%-- 數(shù)據(jù)表格 --%> <table class="layui-table" lay-data="{ id:'test', url:'/menu/page', page:true, limits: [10,20,50], //每頁條數(shù)的選擇項,默認:[10,20,30,40,50,60,70,80,90] limit: 10, //每頁默認顯示的數(shù)量 method:'post' //提交方式 }" lay-filter="test"> <thead> <tr> <th lay-data="{field:'id', width:80, sort: true}">編號</th> <th lay-data="{field:'name'}">菜單名稱</th> <th lay-data="{field:'url', sort: true}">菜單路徑</th> <th lay-data="{field:'icon'}">菜單圖標</th> <th lay-data="{field:'parent'}">菜單</th> <th lay-data="{field:'children', sort: true}">子菜單</th> <th lay-data="{fixed: 'right', toolbar: '#barDemo', width:250, align:'center'}">操作</th> </tr> </thead> </table> </div> <%-- 這里可以放CRUD按鈕 --%> <script type="text/html" id="barDemo"> <a class="layui-btn layui-btn-xs" lay-event="detail">編輯</a> <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">刪除</a> </script>
js代碼
$(function () { //注意:這里是數(shù)據(jù)表格的加載數(shù)據(jù),必須寫 layui.use(['table', 'layer', 'form'], function () { var table = layui.table; layer = layui.layer; form = layui.form; //CURD... }); });
后端需要返回的json數(shù)據(jù)格式:
我們可以自己抽一個工具類出來封裝成前端需要返回的json數(shù)據(jù)格式哦
public class PageUtil<T> { private int code=0; private String msg; private Long count; //總條數(shù) private List<T> data = new ArrayList(); //裝前臺當前頁的數(shù)據(jù) //getter/setter方法... }
以上這篇Layui數(shù)據(jù)表格 前后端json數(shù)據(jù)接收的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。