如何使用 struts2validation.xml 验证动态单选按钮
我有一些动态生成的单选按钮,我想验证这些字段。我如何在validation.xml(Struts2)中做到这一点?
我可以使用注释来做到这一点吗?不知道该怎么做..
I have some radio buttons that are generated dynamically, I want to validate these fields. How do I do it in validation.xml(Struts2)?
Can I do this using annotations? Not sure how to though..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
@RequiredFieldValidator
与 bean 中的特定属性一起使用。这些链接可能对您有帮助。
struts-2-validation-using-annotations
<一个href="https://stackoverflow.com/questions/1758088/how-to-validate-a-select-tag-in-struts-2-framework">如何验证-a-select-tag-in- struts-2-框架
You can use
@RequiredFieldValidator
with the specific property in the bean.these links might help you.
struts-2-validation-using-annotations
how-to-validate-a-select-tag-in-struts-2-framework