美文网首页
thymeleaf的for:each用法

thymeleaf的for:each用法

作者: ljwheyxy | 来源:发表于2019-11-07 21:41 被阅读0次
<table>
        <thead>
            <tr>
                <th>序号</th>
                <th>用户名</th>
                <th>密码</th>
                <th>用户昵称</th>
            </tr>
            <tr th:each="user:${userlist}">
                <td th:text="${user.id}"></td>
                <td th:text="${user.username}"></td>
                <td th:text="${user.password}"></td>
                <td th:text="${user.petname}"></td>
            </tr>
        </thead>
    


</table>

相关文章

网友评论

      本文标题:thymeleaf的for:each用法

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