其他分享
首页 > 其他分享> > 22.Thymeleaf 模板如何遍历集合输出?嘻哈的简写笔记——SpringBoot

22.Thymeleaf 模板如何遍历集合输出?嘻哈的简写笔记——SpringBoot

作者:互联网

~在Controller 类中我们引入Model 进行传值;传值的集合是list,集合名是list

 model.addAttribute("list",list);

~在html里面

<tr th:each="p:${list}">
        <td th:text="${p.id}"></td>
        <td th:text="${p.name}"></td>
        <td th:text="${p.grade}"></td>
</tr>
th:each="" //表示循环遍历
p是我们自定义的变量名,相当于for循环中的i
td th:text="${p.id}"  虽然写在标签里面但是输出的时候输出在标签中间;

。。。。。。。。。。。。。

嘻哈的简写笔记

。。。。。。。。。。。。。

标签:简写,SpringBoot,22,list,Thymeleaf,th,集合,嘻哈,传值
来源: https://blog.csdn.net/weixin_52578409/article/details/111397004