Struts2 - 在页面上显示验证错误
我在 struts2 应用程序中使用 simple 主题。在我的操作的 validate()
方法中,如果我使用 addFieldError(fieldName, message)
添加验证错误消息,则错误消息不会显示在我的视图页面中。我想这是因为我使用了 simple 主题。
那么,如何在屏幕上显示 struts2 验证错误呢?
I'm using simple theme in my struts2 application. In my action's validate()
method, if i add validation error messages using addFieldError(fieldName, message)
, the error message is not showing up in my view page. I guess this is because I use the simple theme.
So, how do I show struts2 validation errors in my screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅供记录,您的标签中存在输入错误。正确的标签是:
Just for the record, there is a typing error in you tag. Correct tag is:
得到答案:它在我的 JSP 文件中使用
标记。 :)Got the answer: it's using
<s:fieldError/>
tag in my JSP file. :)