SpringBoot(03)--thymeleaf模板介绍(二)

SpringBoot(03)--thymeleaf模板介绍(二)

薛定谔的汪

Thymeleaf常用

0、基本变量取值

部分代码示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@Controller
public class HelloController {
@RequestMapping("hello")
public String hello(Model model){
model.addAttribute("hello","has");
model.addAttribute("ss","haaaaasss");
model.addAttribute("s","haaaaasss");
Person me = new Person(0,"亚凯",99);
model.addAttribute("me",me);
Person p1 = new Person(1,"亚凯",100);
Person p2 = new Person(2,"小蕾",100);
List<Person> persons = new ArrayList<>();
persons.add(p1);
persons.add(p2);
model.addAttribute("persons",persons);
return "hello";
}
}
1
2
3
<span th:text="${hello}">hello</span>
<span th:id="aa+${hello}">id</span>
<div th:text="${me.name}"></div>

1、赋值、字符串拼接

1
2
<p  th:text="${collect.description}">description</p>
<span th:text="'Welcome to our application, ' + ${user.name} + '!'">

字符串拼接还有另外一种简洁的写法

1
<span th:text="|Welcome to our application, ${user.name}!|">

2、条件判断 If/Unless

Thymeleaf中使用th:if和th:unless属性进行条件判断,下面的例子中,<a>标签只有在th:if中条件成立时才显示:

1
2
<a th:if="${myself=='yes'}" > </i> </a>
<a th:unless=${session.user != null} th:href="@{/login}" >Login</a>

th:unless于th:if恰好相反,只有表达式中的条件不成立,才会显示其内容。

也可以使用 (if) ? (then) : (else) 这种语法来判断显示的内容

3、for 循环

1
2
3
4
5
6
7
<div th:each="person,pStat : ${persons}">
<div>--------------------------------</div>
<div th:text="${pStat.index}"></div>
<div th:text="${person.id}"></div>
<div th:text="${person.name}"></div>
<div th:text="${person.age}"></div>
</div>

iterStat称作状态变量,属性有:

  • index:当前迭代对象的index(从0开始计算)
  • count: 当前迭代对象的index(从1开始计算)
  • size:被迭代对象的大小
  • current:当前迭代变量
  • even/odd:布尔值,当前循环是否是偶数/奇数(从0开始计算)
  • first:布尔值,当前循环是否是第一个
  • last:布尔值,当前循环是否是最后一个

4、URL

URL在Web应用模板中占据着十分重要的地位,需要特别注意的是Thymeleaf对于URL的处理是通过语法@{…}来处理的。 如果需要Thymeleaf对URL进行渲染,那么务必使用th:href,th:src等属性,下面是一个例子

1
2
3
4
5
<!-- Will produce 'http://localhost:8080/standard/unread' (plus rewriting) -->
<a th:href="@{/standard/{type}(type=${type})}">view</a>

<!-- Will produce '/gtvg/order/3/details' (plus rewriting) -->
<a href="details.html" th:href="@{/order/{orderId}/details(orderId=${o.id})}">view</a>

设置背景

1
<div th:style="'background:url(' + @{/<path-to-image>} + ');'"></div>

根据属性值改变背景

1
<div class="media-object resource-card-image"  th:style="'background:url(' + @{(${collect.webLogo}=='' ? 'img/favicon.png' : ${collect.webLogo})} + ')'" ></div>

几点说明:

  • 上例中URL最后的(orderId=${o.id}) 表示将括号内的内容作为URL参数处理,该语法避免使用字符串拼接,大大提高了可读性
  • @{...}表达式中可以通过{orderId}访问Context中的orderId变量
  • @{/order}是Context相关的相对路径,在渲染时会自动添加上当前Web应用的Context名字,假设context名字为app,那么结果应该是/app/order

5、th:select

1
2
3
4
5
<select>
<option >姓名</option>
<option th:selected="(${persons[1].name eq '小蕾'})"></option>
<option th:selected="(${persons[1].name eq '亚凯'})"></option>
</select>

6、th:with

1
2
3
<div th:with="haha=${me}">
<div th:text="${me.age}">3</div>
</div>

7、内联

文本内联

[[…]]之间的表达式在Thymeleaf被认为是内联表达式,在其中您可以使用任何类型的表达式,也会有效th:text属性。

1
<p>Hello, [[${user.name}]]!</p>

等同于:

1
<p>Hello, <span th:text="${session.user.name}">Sebastian</span>!</p>

为了使用内联,必须激活它使用th:inline 属性,它有三个可能的值或模式(text, javascriptnone)。让我们试着文本:

1
<p th:inline="text">Hello, [[${session.user.name}]]!</p>

如果不使用th:inline=”text”,则会被当做字符串显示。

脚本内联

Thymeleaf提供一系列的“脚本”的内联模式功能,这样你就可以将你的数据在脚本中创建一些脚本语言。

写脚本内联表达式的值到我们的脚本:

1
2
3
4
5
6
7
8
<script th:inline="javascript">
var user = [[${user.username}]];
alert(user);
</script>
<script th:inline="javascript">
var msg = 'Hello, ' + [[${user.username}]];
alert(msg);
</script>

只要加入th:inline=”javascript”在js代码中才能使用[ [..] ]

使用Thymeleaf布局

templates下新建一个layout.html,定义代码片段

1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head th:fragment="header">
<meta charset="UTF-8"/>
<title>layout</title>
</head>
<body>
<div th:fragment="copy">
&copy; 2017
</div>
</body>
</html>

在页面任何地方引入:

1
2
3
4
5
6
7
8
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<div th:replace="layout :: header"></div>
<body>
<div th:include="layout :: copy"></div>
<div th:replace="layout :: copy"></div>
</body>
<!--这里layout就是templates下的文件地址 支持目录形式:如fragment/layout-->

th:include 和 th:replace区别,include只是加载,replace是替换

返回的HTML如下:

1
2
3
4
<body> 
<div> &copy; 2017 </div>
<footer>&copy; 2017 </footer>
</body>

下面是一个常用的后台页面布局,将整个页面分为头部,尾部、菜单栏、隐藏栏,点击菜单只改变content区域的页面

1
2
3
4
5
6
7
8
9
<body class="layout-fixed">
<div th:fragment="navbar" class="wrapper" role="navigation">
<div th:replace="layout :: header">Header</div>
<div th:replace="layout :: left">left</div>
<div th:replace="layout :: sidebar">sidebar</div>
<div layout:fragment="content" id="content" ></div>
<div th:replace="layout :: footer">footer</div>
</div>
</body>

任何页面想使用这样的布局值只需要替换中见的 content模块即可

1
2
3
4
5
<html xmlns:th="http://www.thymeleaf.org" layout:decorator="layout">
<body>
<section layout:fragment="content">
...

也可以在引用模版的时候传参

1
<head th:include="layout :: htmlhead" th:with="title='Hello'"></head>

layout 是文件地址,如果有文件夹可以这样写 fileName/layout:htmlhead
htmlhead 是指定义的代码片段 如 th:fragment="copy"

常用th标签都有那些?

关键字 功能介绍 案例
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="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}",此标签不太优雅,一般用的比较少。

还有非常多的标签,这里只列出最常用的几个,由于一个标签内可以包含多个th:x属性,其生效的优先级顺序为:include,each,if/unless/switch/case,with,attr/attrprepend/attrappend,value/href,src ,etc,text/utext,fragment,remove。

  • Title: SpringBoot(03)--thymeleaf模板介绍(二)
  • Author: 薛定谔的汪
  • Created at : 2017-10-20 15:24:35
  • Updated at : 2023-11-17 19:37:36
  • Link: https://www.zhengyk.cn/2017/10/20/springboot/Sboot03/
  • License: This work is licensed under CC BY-NC-SA 4.0.