Layui框架的使用技巧

1.选中html代码块,ctrl+shift+减号-  就会全部折叠

 

2.加入Thymeleaf模板需要添加命名空间

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org/">



</html>

2.1 替换方法

2.2添加 th:fragment

2.3主页面用一行代码替换

3.SpringBoot里的文档架构

4.layui里的table.render里括号要用空格隔开,不然识

别不了

 

5.fori加回车:自动创建for循环,很方便

 

6.该删的删,让页面变简洁一点

 

7.引入数据表格

layui官网:https://www.layui.com/doc/

 table.render({
    elem: '#test'
    ,url:'/demo/table/user/'
    ,cellMinWidth: 80 //全局定义常规单元格的最小宽度,layui 2.2.1 新增
    ,cols: [[
      {field:'id', width:80, title: 'ID', sort: true}
      ,{field:'username', width:80, title: '用户名'}
      ,{field:'sex', width:80, title: '性别', sort: true}
      ,{field:'city', width:80, title: '城市'}
      ,{field:'sign', title: '签名', width: '30%', minWidth: 100} //minWidth:局部定义当前单元格的最小宽度,layui 2.2.1 新增
      ,{field:'experience', title: '积分', sort: true}
      ,{field:'score', title: '评分', sort: true}
      ,{field:'classify', title: '职业'}
      ,{field:'wealth', width:137, title: '财富', sort: true}
    ]]
  });

,parseData: function(res){ //res 即为原始返回的数据
    return {
      "code": res.status, //解析接口状态
      "msg": res.message, //解析提示文本
      "count": res.total, //解析数据长度
      "data": res.data.item //解析数据列表
    };
  }

table.render({
            elem: '#table1'
            ,url:'/student.json'
            ,cellMinWidth: 80 //全局定义常规单元格的最小宽度,layui 2.2.1 新增
            ,cols: [ [       //括号之间要用空格隔开!!
                {field:'id', width:80, title: 'ID', sort: true}
                ,{field:'name',  title: '姓名'}       //width删掉让它自动匹配
                ,{field:'sex', title: '性别', sort: true}
                ,{field:'stuNo',  title: '学号'}

            ] ]

            ,parseData: function(res){ //res 即为原始返回的数据
                return {
                    "code": 0, //解析接口状态
                    "msg": "", //解析提示文本
                    "count": 50, //解析数据长度
                    "data": res //解析数据列表
                };
            }

        });

7.1开启头部工具栏

 

7.2开启文字按钮工具条

 

<script type="text/html" id="toolbarDemo">
  <div class="layui-btn-container">
    <button class="layui-btn layui-btn-sm" lay-event="getCheckData">获取选中行数据</button>
    <button class="layui-btn layui-btn-sm" lay-event="getCheckLength">获取选中数目</button>
    <button class="layui-btn layui-btn-sm" lay-event="isAll">验证是否全选</button>
  </div>
</script>

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ThatMonth

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值