我有ArrayList
这样定义。
{0=1, 1=com.myApp.entities.User@7ecfc3d9} // userList
0
是用户的ID,1是User
HashMap。我正在尝试遍历此列表以使用用户ID和用户名填充select
。
Thymeleaf如何通过以下结构显示它?
<select th:field="*{user}">
<option
th:each="user : ${userList}"
th:value="${user.getId}"
th:text="${user.getName}">
</option>
</select>
答案 0 :(得分:0)
你可以试试下面的代码,让我知道这是否适合你
<select th:field="*{user}">
<option
th:each="user : ${userList[1]}"
th:value="${user.getId}"
th:text="${user.getName}">
</option>
</select>