从ArrayList获取键和值 - Thymeleaf

时间:2016-11-28 20:50:57

标签: java thymeleaf

我有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>

1 个答案:

答案 0 :(得分:0)

你可以试试下面的代码,让我知道这是否适合你

<select th:field="*{user}">
    <option 
        th:each="user : ${userList[1]}" 
        th:value="${user.getId}"  
        th:text="${user.getName}">
    </option>
  </select>