thymeleaf出现路径(一对多在Thymeleaf中的显示)
thymeleaf出现路径(一对多在Thymeleaf中的显示)
一、Controller
@RequestMapping("/onetomore")
public String getRy(Model model) {
List<Ry> ryList = ryService.findAll();
model.addAttribute("rys" ryList);
return "onetomore";
}
二、Thymeleaf
<table>
<tr th:each="ry:${rys}">
<td>id</td><td th:text="${ry.ryid}"></td>
<td>id</td><td th:text="${ry.xm}"></td>
<td>
<ul >
<li th:each="ah:${ry.ahs}" th:text="${ah.ah}"> </li>
</ul>
</td>
</tr>
</table>
三、效果