zbb20171221 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:布尔值,当前循环是否是最后一个

 

class="table table-bordered">
                                    "obj ,iterStat: ${appkindList}">
                                        
                                        
                                        
"width: 10px">序号 名称 涨幅(图) "width: 40px">涨幅
"${iterStat.count}">- "${obj.name}" class="btn btn-link btn-xs" data-toggle="modal" href="#" th:attr="data-target=${'#'+obj.text+'_MODEL'}">-
class="progress xs">
class="progress-bar progress-bar-danger" th:attr="style=${'width:'+obj.value*100+'%'}">
<span th:text="${#numbers.formatDecimal(obj.value*100,0,2)+'%'}" class="badge bg-blue">-

 

转载于:https://www.cnblogs.com/super-admin/p/8080643.html

你可能感兴趣的:(zbb20171221 thymeleaf th:each)