zbb20171221 thymeleaf th:each

Posted Daryll

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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:布尔值,当前循环是否是最后一个

 

<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的主要内容,如果未能解决你的问题,请参考以下文章

Thymeleaf模板引擎语法

Thymeleaf - 如何在 Thymeleaf 标签“th:if”中将字符串与 html 中的请求参数进行比较?

Spring+thymeleaf

Spring Boot整合Thymeleaf

Thymeleaf:th:在下拉列表中选择

Thymeleaf: th:each 排除任何特定值