验证 HashMap->Radiobutton。 Struts2
我还有一个问题! :)
我有一个通过单选按钮链接在 jsp 上的哈希图。当我检查收音机时,我的哈希图会填充我在标签上指定的参数。现在我想验证单选按钮的检查。我怎样才能做到这一点?可以用注释吗?
我刚刚找到了一个解决方案,使用另一个列表。但我确信存在另一种方式,太简单和干净了。带注释..存在吗?
I have another problem! :)
I have a hashmap linked on jsp with a radiobutton. When I check a radio, my hashmap is populated with the param that I spec on the tag. Now I want to validate the check on radiobutton. How can I make this? Is possible with the annotations?
I have just found a solution, using an another list. But I'm sure that exist another way, too simple and clean. With the annotations.. Exist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Struts 验证文档。您可能需要 必需的验证器,它也可以在风味中使用注释的:
@RequiredFieldValidator
。Here's the Struts Validation document. You likely need the Required Validator which is also available in flavor of an annotation:
@RequiredFieldValidator
.