thymeleaf使用心得

thymeleaf使用心得

使用thymeleaf必须在HTML标签里加 xmlns:th="http://www.thymeleaf.org">

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

深入学习可以下载:Thymeleaf中文参考手册

Maven

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.nekohtml</groupId>
            <artifactId>nekohtml</artifactId>
            <version>1.9.22</version>
        </dependency>

基础

1. 属性赋值

  1. 普通属性:在前加th:即可 如:<div th:id='12'> (为id属性赋值)
  2. 自定义属性:要用 th:attr 如:<div th:attr="myParam='username'">

2. 获取后端传入对象属性

用${对象.属性}即可 ,不过若对线为空时就会报错,所以在后端渲染数据时最好做出判断,为null就new一个
对象。如 <input type='text' th:value='user.username'>

3. 逻辑语句

1.条件判断

  • th:if 、 th:unless
    是相反的在if这边为true的在unless就会为false

    写法:
<th:block th:if="${user.username eq 'admin'}"></th:block><br>

也可以用其他标签 如:<a th:if="${user.username eq 'admin'}"></a> 如果判断为false的话这个a标签就不会显示

  • 条件赋值判断
th:test = "${user.name eq 'admin'}?'管理员','游客'"

th:test = "${user.name}?:${other.name}"//字有就显示没有就显示后面的等同于
th:test = "${user.name}?${user.name}:${other.name}"

2. 循环语句

th:each="prod,iterStat : ${prods}"  

其中iterStat可以获取到状态属性,如iterStat.index 获取迭代下标(0,1,2...)
iterStat 也可不写,像th:each="prod : ${prods}" 不写的话默认是别名加Stat,如:prodStat。

用模板拼凑页面

maven 引入

        <dependency>
            <groupId>nz.net.ultraq.thymeleaf</groupId>
            <artifactId>thymeleaf-layout-dialect</artifactId>
            <version>2.2.2</version>
        </dependency>

1.外部页面引入页面

//底部
<html xmlns:th="http://www.thymeleaf.org">

<div th:fragment="footer" id="footer" class="clear">
    <p>Copyright © 2017</p>
</div>

</html>



//页面想要引用底部
<div th:replace ="layouts/template/footer :: footer"></div>


2.内部页面引入外部页面

//内部页面
<html xmlns:th="http://www.thymeleaf.org"
      xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout"
      layout:decorator="layouts/table-template">//要引入的外部界面的路径


    <div layout:fragment="content">
            ...
            内容
            ...
    </div>
</html>

//要引入的外部界面
//<!DOCTYPE html>(如果用了h5的声明就有可能出现样式问题)
<html xmlns:th="http://www.thymeleaf.org"
      xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout">
      
       <div layout:fragment="content"></div> //上面的内容就会出现在这里
      
</html>


语法表

1.基本语法

语法 功能介绍 实例
th:attr 给标签的属性赋值 <div th:attr="id='666',value='999'">
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:onclick=" 'getCollect()'"
th:each 循环 <tr th:each="item:${list}">
th:if 判断条件 <a th:if="${userld == 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 使用 被指定为默认选项用th:case="*";相当于default <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}">
table遍历 <tr th:each="item:{list}"><br>\<td th:text="{item.tName}"></td>
<td th:text="{item.tAge}">\</td><br>\<td th:text="{item.tAddress}"></td>
</tr>
下拉菜单遍历 <select class="name">
<option>请选择</option>
<option th:each="item:{list}" th:value="{item.tId}" th:text="${item.tName}" >
</option>
</select>
日期格式化 <span th:text="${#dates.format(date,'yyyy-MM-dd hh:mm:ss')}">></span>
三目运算符 <td th:text="${name=='zs'}? 张三 : zs"></td>
gt 大于(>)
ge 大于等于(>=)
eq 等于(==)
lt 小于(<)
le 小于等于(<=)
ne 不等于(!=)

2.内置对象常用语法

作用 实例 说明
日期格式化 <span th:text="${#dates.format(curDate, 'yyyy-MM-dd HH:mm:ss')}"></span> 使用内置对象dates的format函数即可对日期进行格式化,在format函数中,第一个参数是日期对象,对二两个参数为日期格式(规则跟SimpleDateFormat一样)
数字格式化 <span th:text="${#numbers.formatDecimal(money, 0, 2)}"></span> 此示例表示保留两位小数位,整数位自动
<span th:text="${#numbers.formatDecimal(money, 3, 2)}"></span> 此示例表示保留两位小数位,3位整数位(不够的前加0)
获取列表长度 <span th:text="${#lists.size(datas)}"></span> 使用#lists.size来获取List的长度。
获取URL参数值 <span th:text="${#httpServletRequest.getParameter('page')}"></span> 当访问http://localhost:1105/index?page=5时页面将会得到page对应的值:5
定义变量 <div th:with="curPage={#httpServletRequest.getParameter('page')}"><br>\<h3>当前页码:\<span th:text="{curPage}"></span></h3>
</div>
当访问http://localhost:1105/index?page=5时,页面将显示:当前页码:5,说明用th:with来定义变量,多个用,号隔开,使用范围在当前标签内。
自定义标签属性 <span th:attr="myDate={#dates.format(curDate, 'yyyy-MM-dd')},myMoney={money}"></span> 在页面上查看源代码可以看到:<span myMoney="91.6059494319957" myDate="2016-31-02"></span>,说明自定义属性用:th:attr,多个属性用,隔开。

3.字符串操作

作用 实例
判断是否为空 {#strings.isEmpty(name)}<br>{#strings.arrayIsEmpty(nameArr)}
{#strings.listIsEmpty(nameList)}<br>{#strings.setIsEmpty(nameSet)}
是否包含 {#strings.contains(name,'ez')}<br>{#strings.containsIgnoreCase(name,'ez')}
以xx开始,以xx结束 {#strings.startsWith(name,'Don')}<br>{#strings.endsWith(name,endingFragment)}
{#strings.indexOf(name,frag)}<br>{#strings.substring(name,3,5)}
{#strings.substringAfter(name,prefix)}<br>{#strings.substringBefore(name,suffix)}
${#strings.replace(name,'las','ler')}
去空格 ${#strings.trim(str)}
获取长度 ${#strings.length(str)}
是否相等 ${#strings.equals(str)}
字符串转int(转成3位) {#numbers.formatInteger(num, 3)<br>//判断大于4<br>th:if="{#numbers.formatInteger( num, 3) > #numbers.formatInteger('4',3) }"

踩过的坑

(1)路径要从templates下算起

(2)背景图片的添加

<li th:attr="style='background:url('+ @{/images/login_bg2.jpg} + ');background-size:cover;background-color: #074B7B;background-size: 100%;'">

(3)iframe内嵌页面height值太小导致的页面偏窄

解决办法:删除掉最外层页面的h5声明<!DOCTYPE html>

(4)引入spring security,

要先在maven中引入

 <dependency>
     <groupId>org.thymeleaf.extras</groupId>
     <artifactId>thymeleaf-extras-springsecurity4</artifactId>
 </dependency>

显示用户信息

<span th:text="${#authentication.principal.username}"> 管理员</span>

根据角色判别,==注意角色名必须要是以“ROLE_”开头,要不然识别不了==

<div th:if="${#authorization.expression('hasRole(''ROLE_ADMIN'')')}">
    管理员可见
</div>

<div th:if="${#authorization.expression('hasRole(''ROLE_BANK'')')}">
    银行账户可见
</div>

获取url上面的参数,如 /login?error

<div class="layui-form-item" th:if="${#httpServletRequest.getParameter('error')} " style="color: red;text-align: center">账号或密码不正确</div>

(5) 模板中标签必须要有结束符的解决办法

在application.yml添加

//使用非严格的html5标签
spring.thymeleaf.mode=LEGACYHTML5

maven 添加依赖

<dependency>
    <groupId>net.sourceforge.nekohtml</groupId>
    <artifactId>nekohtml</artifactId>
    <version>1.9.22</version>
</dependency>

(6) 拼接俩个参数的类容,其中有null时的处理办法

//在三目运算外加()
th:text="(${item?.description eq null}?'': ${item?.description})  +${item?.phone}"

(7)获取动态字段的值,里面嵌入

//需要在外部  打双下滑线   __${}__ 预编译
//如:${projectData.__${child.name}__}
 <th:block th:each="child:${group.children}">
        <tr>
            <td style="border:0" class="s-dm-title" th:text="${child.label}">

            </td>
            <td style="border:0" class="s-dm-content" th:text="${projectData.__${child.name}__}">

            </td>

        </tr>
        </th:block>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352