Thymeleaf:th:每个错误

时间:2015-04-24 12:33:43

标签: for-loop thymeleaf

我想在thymeleaf模板中执行此操作,但我收到错误

<tr th:each="user : ${userList}" th:id="${user.id}}">
    <td th:text="${user.email}"></td>
    <td th:text="${user.name}"></td>
    <td th:text="${user.gender}"></td>
    <td th:text="${user.level}"></td>
</tr>

错误

Could not parse as expression: "${user.id}}"

请告诉我如何处理这个问题:)

谢谢,

1 个答案:

答案 0 :(得分:2)

您在错误行中使用了}两次。试试这个。

<tr th:each="user : ${userList}" th:id="${user.id}">
    <td th:text="${user.email}"></td>
    <td th:text="${user.name}"></td>
    <td th:text="${user.gender}"></td>
    <td th:text="${user.level}"></td>
</tr>