2021-05-29

文章目录


前言

一、Thymeleaf常用标签

二、使用步骤

1.引入依赖

代码如下(示例):

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
        </dependency>
</dependencies>

2.常用标签

代码如下(示例):

<form id="login-form" th:action="@{/login}">...</form>
th:each 类似<c:forEach>
th:field 常用于表单字段绑定。通常与th:object一起使用。 属性绑定、集合绑定。
th:href 
<a th:href="@{/logout}" class="signOut"></a>
th:if  <div th:if="${rowStat.index} == 0">... do something ...</div>
上一篇:Springboot thymeleaf语法的理解和使用


下一篇:POJ2104 K-th Number