示例如下
<table id="demo"></table>
<script src="/layui/layui.js"></script>
<script type="text/javascript">
layui.use('table', function(){
var table = layui.table;
table.render({
elem: '#demo'
,height: 312
,url: 'employee/list' //数据接口
,page: true //开启分页
,cols: [[ //表头
{field: 'id', title: 'ID', width:120, sort: true, fixed: 'left'}
,{field: 'username', title: '用户名', width:120}
,{field: 'tel', title: '手机号码', width:120, sort: true}
,{field: 'email', title: '邮箱', width:120}
,{field: 'deptId', title: '部门', width: 120}
,{field: 'inputtime', title: '入职时间', width: 120, sort: true}
,{field: 'state', title: '状态', width: 120, sort: true}
]]
});
});
</script>
```table对数据接口url返回的json格式有明确的要求,如下
code:0 //数据状态
msg:"" //状态信息
count:1000 //数据总数
data:[] //数据列表
所以后台代码应该使用如下格式
@RequestMapping("/list")
@ResponseBody
public Object list(){
Map<String,Object> map=new HashMap<>();
List list=employeeService.selectAll();
int count = employeeService.selectCount();
map.put(“code”, 0);
map.put(“msg”, “”);
map.put(“count”, count);
map.put(“data”, list);
return map;
}