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}"  虽然写在标签里面但是输出的时候输出在标签中间;

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

嘻哈的简写笔记

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

上一篇:Thymeleaf


下一篇:thymeleaf语法