Thymeleaf循环语句

Thymeleaf的for循环也是使用标签属性来完成的,th:each代表的就是循环语句。

<ul th:each="t : ${ts}">
  <li th:text="${ts.name}">li>
ul>
  • ${ts}是从模板上下文中获取变量
  • t${ts}变量遍历后的每一个对象
  • ${t.name}就可以读取遍历中的变量

打印列表的索引值

<ul th:each="t,it: ${ts}">
  <li>
    <span th:text="${it.count}">span>
    <span th:text="${t.name}">span>
  li>
ul>
it.index
当前的迭代对象的index(从1开始计算)
it.count
当前迭代对象的index(从1开始计算)
it.size
被迭代对象的大小
it.even/odd
布尔值,循环是否是偶数/奇数
it.first
布尔值,循环是否是第一个
it.last
布尔值,循环是否最后一个

你可能感兴趣的:(java)