这里介绍thymeleaf的编程语法,本节主要包括如下内容
下文演示以上语法的用法。
User
public class User {
private String name;
private boolean isAdmin;
private String other;
private int age;
public User(String name, boolean isAdmin, String other, int age) {
super();
this.name = name;
this.isAdmin = isAdmin;
this.other = other;
this.age = age;
}
// set/get略
}
ProgrammingCtl : control类
@Controller
@RequestMapping("/programming")
public class ProgrammingCtl {
@RequestMapping("programming")
public String iteration(ModelMap modeMap) {
// Iteration
List<User> userList = new ArrayList<User>();
userList.add(new User("son_1", true, "other_1", 11));
userList.add(new User("son_2", false, "other_2", 22));
userList.add(new User("son_3", true, "other_3", 33));
userList.add(new User("son_4", false, "other_4", 44));
modeMap.put("userList", userList);
// ifelse
User userIf = new User("admin", true, "other_if", 11);
modeMap.put("user", userIf);
return "programming/programming";
}
}
本请求转到页面programming.html,
常用th:each用法:
<table border="2">
<thead>
<tr>
<th>name</th>
<th>age</th>
<th>isAdmin</th>
</tr>
</thead>
<tbody>
<!-- 常用的迭代 th:each 用法 -->
<tr th:each="user : ${userList}">
<td th:text="${user.name}"></td>
<td th:text="${user.age}"></td>
<td th:text="${user.isAdmin}"></td>
</tr>
</tbody>
</table>
运行结果如下:
迭代的对象
本例子中迭代的对象是java.util.List,除了List,还可以对以下对象进行迭代
获取迭代的中间的状态,定义在iterStat中
在迭代过程中,可以获取迭代的中间状态,详细如下:
<t able border="2">
<thead>
<tr>
<th>迭代索引</th>
<th>元素所处的位置索引</th>
<th>奇偶行</th>
<th>name</th>
<th>age</th>
<th>isAdmin</th>
</tr>
</thead>
<tbody>
<!-- 获取迭代的中间的状态,定义在iterStat中-->
<tr th:each="user,iterStat : ${userList}">
<!-- index: 当前迭代的索引 -->
<td th:text="${iterStat.index }"></td>
<!-- first: 当前元素是第一个元素; last: 当前元素是最后个元素 -->
<td th:text="${iterStat.first } ? '这是第一个元素':(${iterStat.last} ? '这是最后一个元素':'')" ></td>
<!-- -->
<td th:text="${iterStat.odd} ? 'odd' : 'even'" ></td>
<td th:text="${user.name}"></td>
<td th:text="${user.age}"></td>
<td th:text="${user.isAdmin}"></td>
</tr>
</tbody>
</table>
运行结果如下:
演示如下功能
<!-- th:if:如果值是true,则打印<span>整个节点 -->
<span th:if="${user.isAdmin}" th:text="${user.name} + '是管理员'"> </span><br />
<!-- th:unless: 和th:if是相反功能,如果值为false,则打印<span>整个节点 -->
<span th:unless="not ${user.isAdmin}" th:text="${user.name} + '是管理员'"> </span><br />
输出:
<span>admin是管理员</span><br />
<span>admin是管理员</span><br />
th:if条件判断
除了判断boolean值外,thymeleaf还认为如下表达式为true:
演示如下功能
<!-- th:switch / th:case -->
<div th:switch="${user.name}">
<p th:case="'admin'">User is an administrator</p>
<!-- *: case的默认的选项 -->
<p th:case="*">User is some other thing</p>
</div>
输出:
<div>
<p>User is an administrator</p>
</div>
代码详细见Github
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/hry2015/article/details/73253080
内容来源于网络,如有侵权,请联系作者删除!