0
我看了本教程:https://spring.io/guides/gs/validating-form-input。Thymeleaf錯誤消息優化
使用th:errors
導致<br>
分離的錯誤消息。我想要一個無序的列表。所以我定義這樣的片段......
<td th:fragment="validationMessages(field)" th:if="${#fields != null and field != null and #fields.hasErrors(field)}">
<ul>
<li th:each="error : ${#fields.errors(field)}" th:text="${error}"></li>
</ul>
</td>
...並使用它與...
<td th:replace ="form :: validationMessages('age')"></td>
是否有一個「乾淨的代碼」的解決方案/最佳做法,如覆蓋th:errors
的渲染實現?
感謝您的反饋 – baymon