springboot30-Thymeleaf循环遍历list集合

springboot30-Thymeleaf循环遍历list集合


<body>
<!--
    user 当前循环的对象变量名称(随意起)
    userStat 当前循环对象状态的变量(可写,可不写),不写出来也可以用
    ${userList} 当前循环的集合
-->
    <div th:each="user,userStat:${userList}">
        <span th:text="${userStat.index}"></span>
        <span th:text="${userStat.count}"></span>
        <span th:text="${user.getId()}"></span>
        <span th:text="${user.getNick()}"></span>
        <span th:text="${user.getPhone()}"></span>
        <span th:text="${user.getAddress()}"></span>
    </div>
</body>
上一篇:Java之SpringBoot Thymeleaf


下一篇:Js批量下载花瓣网及堆糖网专辑图片