Struts2 验证和 Select 标签
我正在使用 struts2 并在操作中使用注释进行验证。当我用丢失的数据填充表单时,我确实使用另一个操作来填充选择列表,它返回到操作的输入结果,但带有丢失的列表并显示错误。
I'm using struts2 and validation using annotations in the action. I do use another action to fill the select lists when i fill the form with missing data it returns to the input result of the action but with the missing list and shows me an error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 常见问题解答条目验证失败时重新填充表单控件。
简而言之,如果您有列表,则需要使用
Preparable
接口或使用
标签重新填充它们。就我个人而言,我认为Preparable
是正确的选择。See the FAQ entry about repopulating form controls when validation fails.
The nutshell version is that if you have lists they need to be repopulated using either the
Preparable
interface or with<s:action>
tags. Personally, I thinkPreparable
is the way to go.