如何删除 struts2 应用程序中字段级别出现的错误消息
我在 jsp 页面中使用 struts2 应用程序,
我使用 struts-tags:textfeilds ,并且其中有一个提交按钮,
我已经对它们应用了验证,当我点击按钮时,错误消息出现
在 feild 级别(即.在字段旁边),我已经使用 使错误消息出现在我想要的任何地方,但是字段旁边的消息没有删除,我如何从那里删除消息。
谢谢
I am using struts2 application with the jsp page ,
i am using struts-tags:textfeilds , and i have a submit button in it ,
i have applied validation for them , when i hit the button the error messages are
appearing at the feild level(ie.beside the feild ) , i have used the to make the error messages appear where ever i want , but the messages beside the feilds are not removing ,How do i remove the messages from there .
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你知道你正在使用哪个主题吗?您可以尝试将
theme="basic"
添加到您的
标记 - 我认为您看到的是 Struts 使用主题授予的一些自由为您使用并呈现
标记。Do you know which theme you are using? You could try adding
theme="basic"
to your<s:textfield>
tag - I think what you're seeing is Struts using some freedoms granted by the theme in use and rendering the<s:fieldError>
tags for you.