Thymeleaf:字段验证错误

时间:2017-01-06 16:59:10

标签: spring forms validation thymeleaf

使用Thymeleaf + Spring和表单验证,我想显示与此字段旁边的字段相关的错误。

<input type="text"
  th:field="*{companyName}" class="form-control"
  placeholder="Code client" th:errorClass="'error'"/>

如果字段有错误,则确实应用了类“错误”。但有没有一种简单的方法来显示该字段的验证错误?

1 个答案:

答案 0 :(得分:5)

使用此代码显示错误:

<p class="alert alert-danger" th:if="${#fields.hasErrors('companyName')}" th:errors="*{companyName}"></p>