thymeleaf的介绍与简单使用

一、thymeleaf介绍

  1. thymeleaf是一个HTML模板引擎;
  2. 浏览器会忽视thymeleaf未定义的标签,不会报错,不影响静态内容的展示;
  3. thymeleaf通过定义的标签动态替换HTML静态内容,实现动态显示。

二、thymeleaf的使用

  1. 在SpringBoot项目的pom文件中引入:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  1. thymeleaf模板文件在SpringBoot项目默认位置:src/main/resources/templates
  2. 简单示例:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>ThymeLeaf入门</title>
    <meta http-equiv="Content-type" content="text/html" charset="UTF-8" />
</head>
<body>
    <p th:text="'hello,' + ${name} + '!'">将要被替换的内容!</p>
</body>
</html>
  • html头部需引入:xmlns:th=“http://www.thymeleaf.org”
  • 替换<p>标签内的文本内容:th:text="‘hello,’ + ${name} + ‘!’"
  • 使用${name}获取后台传递的内容,后台代码如下:
@RequestMapping("index")
public String index(Map<String,Object> map){
    map.put("name","SpringBoot ThymeLeaf");
    return "index";
}

三、thymeleaf常用标签

  1. 替换文本
<p th:text="'hello,' + ${name} + '!'">将要被替换的内容!</p>


th:text标签用来替换文本内容。当后台不传name时,将会显示:hello null!
  1. 条件判断
后台:
map.put("type","spring");

页面:
<p th:if="${type =='spring'}">Spring</p>
<p th:if="${type =='thymeleaf'}">thymeleaf</p>

在页面上只会显示Spring,不会显示thymeleaf。
也就是说,在一个HTML标签加上条件判断,如果不满足条件,这个标签里面的内容都不会显示。
所以,可以用来动态控制页面内容的显示与隐藏。
  1. 循环迭代
后台:
Student student1 = new Student(1L,"张三","11");
Student student2 = new Student(2L,"李四","12");
Student student3 = new Student(2L,"王五","13");
List<Student> stuList = new ArrayList<>();
stuList.add(student1);
stuList.add(student2);
stuList.add(student3);
map.put("stuList", stuList);

页面:
<table>
    <tr>
        <th>ID</th>
        <th>NAME</th>
        <th>AGE</th>
    </tr>
    <tr th:each="stu : ${stuList}">
        <td th:text="${stu.id}">1</td>
        <td th:text="${stu.name}">海</td>
        <td th:text="${stu.age}">18</td>
    </tr>
</table>

显示结果:
ID	NAME	AGE
1	张三	11
2	李四	12
2	王五	13

附上Student的构造类:
public Student(Long id, String name, String age) {
    this.id = id;
    this.name = name;
    this.age = age;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值