码迷,mamicode.com
首页 > 其他好文 > 详细

zbb20171221 thymeleaf th:each

时间:2017-12-21 15:58:49      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:current   toggle   布尔   dex   span   ref   body   tar   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:布尔值,当前循环是否是最后一个

 

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

                                </table>

 

zbb20171221 thymeleaf th:each

标签:current   toggle   布尔   dex   span   ref   body   tar   each   

原文地址:http://www.cnblogs.com/super-admin/p/8080643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!