using thymeleaf 之 th:each迭代循环

th:each属性用于迭代循环,语法:th:each="obj,iterStat:${objList}"

迭代对象可以是java.util.List,java.util.Map,数组等;

iterStat称作状态变量,属性有:
    index:当前迭代对象的index(从0开始计算)
    count: 当前迭代对象的index(从1开始计算)
    size:被迭代对象的大小
    current:当前迭代变量
    even/odd:布尔值,当前循环是否是偶数/奇数(从0开始计算)
    first:布尔值,当前循环是否是第一个
    last:布尔值,当前循环是否是最后一个

  1. List循环:
    用户名 邮箱 管理员 状态变量:index 状态变量:count 状态变量:size 状态变量:current.userName 状态变量:even 状态变量:odd 状态变量:first 状态变量:last
    Onions [email protected] yes 状态变量:index 状态变量:count 状态变量:size 状态变量:current 状态变量:even**** 状态变量:odd 状态变量:first 状态变量:last
  2. Map循环:
  3. 数组循环:



你可能感兴趣的:(Thymeleaf)