春季验证:最干净的方式来构成已验证输入的随附标签

发布于 2024-10-05 07:55:22 字数 210 浏览 2 评论 0原文

我正在验证绑定到路径的输入字段。我为此使用 hibernate-validator 4。 现在我想突出显示年龄标签,以便它从页面中弹出(粗体、红色等)。 不过我想知道最干净的方法是什么。

似乎是针对整个表单对象而不是针对特定字段。任何意见都会受到赞赏。

I'm validating the input field that's bound to path. I'm using hibernate-validator 4 for this.
Now I'd like to highlight the age label so it pops out of the page (bold, red colour etc.).
However I'm wondering what the cleanest way to do this is.

<spring:hasBindErrors name="*"/> seems to be for the whole form object instead of for a specific field. Any input is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情绪 2024-10-12 07:55:22

Spring 为表单提供了特殊的 jsp 标签,它支持此任务(在出现错误时突出显示):

例如这个 jsp

...
<%@ taglib prefix='form' uri='http://www.springframework.org/tags/form'%>
...
<form:form method="post"
           commandName="myCommand">
  <form:input path="name"
              cssClass="normalLayout"
              cssErrorClass="normalLayout error"/>
  <form:errors path="name"
               cssClass="errorMessage"/>
</form:form>
...

在这种情况下:如果一切正常,输入字段使用 css 类“normalLayout”,并且 css 类“normalLayout” ” 和“名称”(如果该字段存在验证错误)。

form:errors 是打印验证时产生的错误信息。

@参见http ://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/view.html#view-jsp-formtaglib

Spring provides special jsp tags for forms, which support this task (highlighing in case of error):

For example this jsp

...
<%@ taglib prefix='form' uri='http://www.springframework.org/tags/form'%>
...
<form:form method="post"
           commandName="myCommand">
  <form:input path="name"
              cssClass="normalLayout"
              cssErrorClass="normalLayout error"/>
  <form:errors path="name"
               cssClass="errorMessage"/>
</form:form>
...

In this case: the input field uses the css class "normalLayout" if every thing is ok, and the css classes "normalLayout" and "name" if there is a validation error for the field.

form:errors is to print the error message generated while validation.

@see http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/view.html#view-jsp-formtaglib

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文