thymeleaf 模版用法

最近在写一个spring boot 的项目,在项目中用到了 thymeleaf 这个模版引擎,这里记录几个自己用的几个方法。

 <table class="layui-table layui-form">
                              <thead>
                                <tr>
                                  <th>
                                    <input type="checkbox" name=""  lay-skin="primary">
                                  th>
                                  <th>IDth>
                                  <th>登录名th>
                                  <th>性别th>
                                  <th>手机th>
                                  <th>邮箱th>
                                  <th>角色th>
                                  <th>加入时间th>
                                  <th>状态th>
                                  <th>编辑th>
                              thead>
                              <tbody>
                                <tr th:each="user : ${pageinfo.list}">  // 获取对象集合 进行循环展示  
                                  <td>
                                    <input type="checkbox" name=""  lay-skin="primary">
                                  td>
                                  <td th:text="${user.uid}">1td>
                                  <td th:text="${user.name}">admintd>
                                  <td>
                                          <div th:switch="${user.sex}">
                                        <span  th:case="0" >span>
                                        <span  th:case="1" >span>
                                      div>
                                  td>
                                  <td th:text="${user.phone}">18925139194td>
                                  <td th:text="${user.email}">[email protected]td>
                                  <td th:text="${user.roles}">超级管理员td>
                                  <td th:text="${#dates.format(user.createtime,'yyyy-MM-dd HH:mm:ss')}">2017-01-01 11:11:42td> // th  时间 进行 格式化 
                                  <td class="td-status">
                                      <div th:switch="${user.status}">
                                        <span title="停用"   class="layui-btn layui-btn-normal layui-btn-mini user_active " th:case="0" th:onclick="member_stop(this,[[${user.uid}]])" >已停用span>  //在js事件 需要用到 参数时 可以用[[]] 进行传参   
                                        <span title="启用" class="layui-btn layui-btn-normal layui-btn-mini " th:case="1"  th:onclick="member_stop(this,[[${user.uid}]])">已启用span>
                                      div>
                                  td>
                                  <td class="td-manage">
                                    <a title="编辑"  th:onclick="xadmin.open('编辑','admin-edit.html')" href="javascript:;">
                                      <i class="layui-icon">i>
                                    a>
                                    <a title="删除" th:onclick="member_del(this,[[${user.uid}]])" href="javascript:;">
                                      <i class="layui-icon">i>
                                    a>
                                  td>
                                tr>
                              tbody>
                            table>

 

转载于:https://www.cnblogs.com/200967tao/p/11475522.html

你可能感兴趣的:(thymeleaf 模版用法)