春季验证:最干净的方式来构成已验证输入的随附标签
我正在验证绑定到路径的输入字段。我为此使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring 为表单提供了特殊的 jsp 标签,它支持此任务(在出现错误时突出显示):
例如这个 jsp
在这种情况下:如果一切正常,输入字段使用 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
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