2
我想用Spring MVC在瀏覽器中顯示來自數據庫的數據。除了每個循環的Thymeleaf模板之外,一切都很好。那裏有什麼不對。如何顯示Thymeleaf中每個循環的對象集合?
如何顯示在ID行id
數據和名稱行name
數據通過對象集合迭代與每個循環?
的源代碼:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<table border="1">
<tr style="font-size: 13">
<td>ID</td>
<td>Name</td>
</tr>
<tr th:each="count : ${id}">
<td><p th:text="${count}" /></td>
<td><p th:text="${name}" /></td>
</tr>
</table>
</body>
</html>
對不起,但你做得很好!這是我所需要的。非常感謝! – Just4Fun
很高興聽到,歡迎您;) – DimaSan
不錯的工作,把從開始到結束的順序信息。正是我在尋找的東西。儘管我只需要最後一部分,但這是一個非常有用的格式。 – user1445967