thymeleaf在html写if else
时间: 2024-02-17 18:28:26 浏览: 135
Thymeleaf是一种服务器端模板引擎,可以在HTML模板中轻松地添加条件语句。
在Thymeleaf中,可以使用`th:if`和`th:unless`属性来添加条件语句。
以下是一个示例,演示如何在Thymeleaf中使用条件语句:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Thymeleaf If Example</title>
</head>
<body>
<h1 th:if="${user.isAdmin()}">Admin Dashboard</h1>
<h1 th:unless="${user.isAdmin()}">User Dashboard</h1>
</body>
</html>
```
在上面的示例中,如果`user`对象的`isAdmin()`方法返回`true`,则显示“Admin Dashboard”,否则显示“User Dashboard”。`th:if`和`th:unless`属性可以用于任何HTML元素,并且可以嵌套在其他Thymeleaf属性中。
相关问题
thymeleaf html if else
Thymeleaf provides conditional statements like `if` and `else` to handle conditional rendering of HTML elements.
Here's an example of using `if` and `else` in Thymeleaf:
```
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Conditional Rendering with Thymeleaf</title>
</head>
<body>
<div th:if="${user.isAdmin}">
<h1>Welcome Admin!</h1>
</div>
<div th:else>
<h1>Welcome User!</h1>
</div>
</body>
</html>
```
In the above example, if the `user.isAdmin` is true, then the `h1` tag inside the first `div` will be rendered. Otherwise, the `h1` tag inside the second `div` will be rendered.
You can also use the shorthand notation for the `if` statement as shown below:
```
<div th:if="${user.isAdmin}">Welcome Admin!</div>
```
This will render the `div` tag with the "Welcome Admin!" text only if the `user.isAdmin` is true.
thymeleaf中使用对象的if else
在Thymeleaf中,可以使用th:if和th:else指令进行条件判断,并且可以使用对象属性进行比较。假设有一个名为"user"的用户对象,可以按照以下方式进行条件判断:
```html
<div th:if="${user.isAdmin()}">
<p>管理员</p>
</div>
<div th:else>
<p>普通用户</p>
</div>
```
在上面的例子中,如果用户对象的isAdmin方法返回true,则显示"管理员",否则显示"普通用户"。可以根据具体的需求自定义判断条件。
阅读全文