美文网首页thymeleaf的使用
thymeleaf的th:each常见用法

thymeleaf的th:each常见用法

作者: Dream城堡 | 来源:发表于2018-08-20 09:02 被阅读393次

    thymeleaf的th:each常见用法

    一.th:eath迭代集合用法:

    <table border="1" id="stuTable">
        <tr>
            <td>是否选中</td>
            <td>编号</td>
            <td>姓名</td>
            <td>年龄</td>
        </tr>
        <tr th:each="stu,userStat:${studentList}" >
            <td><input th:type="checkbox" th:name="id" th:value="${stu.id}"></td>
            <td th:text="${stu.id}">编号</td>
            <td th:text="${stu.name}">姓名</td>
            <td th:text="${stu.age}">年龄</td>
        </tr>
    </table>
    

    二.迭代下标变量用法:

    状态变量定义在一个th:每个属性和包含以下数据:

    1.当前迭代索引,从0开始。这是索引属性。index

    2.当前迭代索引,从1开始。这是统计属性。count

    3.元素的总量迭代变量。这是大小属性。 size

    4.iter变量为每个迭代。这是目前的财产。 current

    5.是否当前迭代是奇数还是偶数。这些even/odd的布尔属性。

    6.是否第一个当前迭代。这是first布尔属性。

    7.是否最后一个当前迭代。这是last布尔属性。

    用法实例:

    <table border="1" id="stuTable">
        <tr>
            <td>是否选中</td>
            <td>编号</td>
            <td>姓名</td>
            <td>年龄</td>
        </tr>
        <tr th:each="stu,userStat:${studentList}" th:class="${userStat.odd}?'odd':'even'">
            <td th:text="${userStat.index}"></td>
            <td><input th:type="checkbox" th:name="id" th:value="${stu.id}"></td>
            <td th:text="${stu.id}">编号</td>
            <td th:text="${stu.name}">姓名</td>
            <td th:text="${stu.age}">年龄</td>
        </tr>
    </table>
    

    相关文章

      网友评论

        本文标题:thymeleaf的th:each常见用法

        本文链接:https://www.haomeiwen.com/subject/kghkiftx.html