如何使用 Struts2 验证打印特定的操作错误消息?
使用 Struts2 验证时,当您将
标记放入 JSP 中时,默认行为是显示页面中该点的所有操作错误。
有没有办法在此时仅显示特定的错误消息?例如,在 fielderror
的情况下,只需添加 fieldName
属性。 actionerror
是否有一个属性可以完成类似的行为?
When using Struts2 validation, when you put the <s:actionerror>
tag in your JSP, the default behavior is to display all the action errors at that point in the page.
Is there a way to display only specific error messages at that point? For example, in the case of fielderror
one only needs to add the fieldName
attribute. Is there an attribute of actionerror
that accomplishes similar behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于特定于字段的错误,函数为:
hasFieldErrors()
您可以像这样使用它:
参考文献:
有趣的阅读:
For field specific error the function is :
hasFieldErrors()
You can use it like this:
References:
Interesting reading: