• Thymleaf模板-骚操作集合


    <!DOCTYPE html>
    <html xmlns:th="http://www.thymeleaf.org">
    <head>
    <meta content="text/html;charset=UTF-8"/>
    <title>测试页面</title>
    </head>
    <body>
        
            
    </body>
    </html>
    thymleaf.html(基础模板)
    <link th:href="@{/css/bootstrap.min.css}" rel="stylesheet" />
    路径都是相对于resource下面的static,或者声明了的context路径
    资源引用
    /common/baseCommon  是相对于 templete的路径,baseCommon.html,top是baseCommon.html文件中th:fragment对应的值,一个html里可含有多个模板
    实际使用页面
    <div th:replace="~{/common/baseCommon :: top}"></div>
    
    模板页面
    <div th:fragment="top" class="navbar navbar-fixed-top" style="background: #1186CB;">
    XXXX
    </div>
    公共页面
    th:include 和 th:replace区别,include只是加载,replace是替换
    1 遍历
    2 <tr class="odd gradeX" th:each="item : ${items}">
    3         <td th:text="${item .count}"></td>
    4 </tr>
    5 判断
    6 <a th:if="${session!=null and session.USER!=null}" th:text="${session.USER.realname}">
    th片段
     1 <tr  th:each="collect,iterStat : ${collects}"> 
     2      <th scope="row" th:text="${collect.id}">1</th>
     3      <td >
     4         <img th:src="${collect.webLogo}"/>
     5      </td>
     6      <td th:text="${collect.url}">Mark</td>
     7      <td th:text="${collect.title}">Otto</td>
     8      <td th:text="${collect.description}">@mdo</td>
     9      <td th:text="${terStat.index}">index</td>
    10  </tr>
    11 iterStat称作状态变量,属性有:
    12 
    13 index:当前迭代对象的index(从0开始计算)
    14 count: 当前迭代对象的index(从1开始计算)
    15 size:被迭代对象的大小
    16 current:当前迭代变量
    17 even/odd:布尔值,当前循环是否是偶数/奇数(从0开始计算)
    18 first:布尔值,当前循环是否是第一个
    19 last:布尔值,当前循环是否是最后一个
    for循环

    内嵌变量

    • dates : java.util.Date的功能方法类。
    • calendars : 类似#dates,面向java.util.Calendar
    • numbers : 格式化数字的功能方法类
    • strings : 字符串对象的功能类,contains,startWiths,prepending/appending等等。
    • objects: 对objects的功能类操作。
    • bools: 对布尔值求值的功能方法。
    • arrays:对数组的功能类方法。
    • lists: 对lists功能类方法
    • sets
    • maps
    ${#dates.format(date, 'dd/MMM/yyyy HH:mm')}
    ${#dates.arrayFormat(datesArray, 'dd/MMM/yyyy HH:mm')}
    ${#dates.listFormat(datesList, 'dd/MMM/yyyy HH:mm')}
    ${#dates.setFormat(datesSet, 'dd/MMM/yyyy HH:mm')}
    ${#dates.createNow()}
    ${#dates.createToday()}
    
    ${#strings.isEmpty(name)}
    ${#strings.arrayIsEmpty(nameArr)}
    ${#strings.listIsEmpty(nameList)}
    ${#strings.setIsEmpty(nameSet)}
    ${#strings.startsWith(name,‘Don’)} // also array, list* and set*
    ${#strings.endsWith(name,endingFragment)} // also array*, list* and set*
    ${#strings.length(str)}
    ${#strings.equals(str)}
    ${#strings.equalsIgnoreCase(str)}
    ${#strings.concat(str)}
    ${#strings.concatReplaceNulls(str)}
    ${#strings.randomAlphanumeric(count)}
    内嵌变量
    <p th:utext="${article.content}"></p> -> <p>my name is <b>maliming</b></p>
    显示对象 --html(utext)
    <div th:switch="${user.name}">
    
        <p th:case="maliming">first</p>若${user.name}中的值为maliming则显示,否则不显示
    
        <p th:case="${otherUser.name}">second</p>
    
    </div>
    th:switch
    <script language="javascript" type="text/javascript" th:inline="javascript">
        var message = [[${goods.goodsContent}]];
    </script>
    js取值
    1 <select>
    2 
    3     <option th:selected="${user.name} == ${otherUser.name}"></option> 若相等就默认选中此<option></option>
    4 
    5 </select>
    th:selected 用于选择框设置选中值
    关键字功能介绍案例
    th:id 替换id <input th:id="'xxx' + ${collect.id}"/>
    th:text 文本替换 <p th:text="${collect.description}">description</p>
    th:utext 支持html的文本替换 <p th:utext="${htmlcontent}">conten</p>
    th:object 替换对象 <div th:object="${session.user}">
    th:value 属性赋值 <input th:value="${user.name}" />
    th:with 变量赋值运算 <div th:with="isEven=${prodStat.count}%2==0"></div>
    th:style 设置样式 th:style="'display:' + @{(${sitrue} ? 'none' : 'inline-block')} + ''"
    th:onclick 点击事件 th:οnclick="'getCollect()'"
    th:each 属性赋值 tr th:each="user,userStat:${users}">
    th:if 判断条件 <a th:if="${userId == collect.userId}" >
    th:unless 和th:if判断相反 <a th:href="@{/login}" th:unless=${session.user != null}>Login</a>
    th:href 链接地址 <a th:href="@{/login}" th:unless=${session.user != null}>Login</a> />
    th:switch 多路选择 配合th:case 使用 <div th:switch="${user.role}">
    th:case th:switch的一个分支 <p th:case="'admin'">User is an administrator</p>
    th:fragment 布局标签,定义一个代码片段,方便其它地方引用 <div th:fragment="alert">
    th:include 布局标签,替换内容到引入的文件 <head th:include="layout :: htmlhead" th:with="title='xx'"></head> />
    th:replace 布局标签,替换整个标签到引入的文件 <div th:replace="fragments/header :: title"></div>
    th:selected selected选择框 选中 th:selected="(${xxx.id} == ${configObj.dd})"
    th:src 图片类地址引入 <img class="img-responsive" alt="App Logo" th:src="@{/img/logo.png}" />
    th:inline 定义js脚本可以使用变量 <script type="text/javascript" th:inline="javascript">
    th:action 表单提交的地址 <form action="subscribe.html" th:action="@{/subscribe}">
    th:remove 删除某个属性 <tr th:remove="all"> 1.all:删除包含标签和所有的孩子。2.body:不包含标记删除,但删除其所有的孩子。3.tag:包含标记的删除,但不删除它的孩子。4.all-but-first:删除所有包含标签的孩子,除了第一个。5.none:什么也不做。这个值是有用的动态评估。
    th:attr 设置标签属性,多个属性可以用逗号分隔 比如 th:attr="src=@{/image/aa.jpg},title=#{logo}",此标签不太优雅,一般用的比较少。
  • 相关阅读:
    Java程序员:一整个项目的具体开发流程介绍
    JAVA常用API整理
    Java开发人员必知必会的20种常用类库和API
    SpringBoot_web开发【实验】-员工列表-链接高亮&列表完成
    luogu P1754 球迷购票问题 |动态规划
    luogu P1566 加等式 |背包问题方案数
    luogu P1564 膜拜 |动态规划
    luogu P1509 找啊找啊找GF |背包
    P1474 货币系统 Money Systems |背包方案数
    cloudera安装报错 socket.gaierror: [Errno -2] Name or service not known
  • 原文地址:https://www.cnblogs.com/yuanzessrs/p/11823518.html
Copyright © 2020-2023  润新知