Struts2 xml 验证复选框而不是 checkboxlist
我有一种表单,其中包含一个复选框(不是复选框列表)和一个文本字段。 如果选中该复选框,则无需输入文本字段的值。 如果未选中该复选框,那么我需要验证文本字段是否为必填字段。 我怎样才能使用表达式验证器。这在struts2.0.11中可能吗?
让我知道
提前致谢
I have one form containing one checkbox(not checkbox list)and one textfield.
If the checkbox is cheked then no need to enter the value for textfield.
If the check box is not checked then I need to validate the textfield has mandatory.
How can I do using expression validator.Is this Possible in struts2.0.11.
Let me know
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用字段表达式验证器。示例:
SomeAction.java
input.jsp
SomeAction.validation.xml
Use fieldexpression validator. Example :
SomeAction.java
input.jsp
SomeAction.validation.xml
您可以在操作类中实现 validate() 方法并在其中添加验证代码。
有关详细信息,请阅读文档。
http://struts.apache.org/2.x/docs/form -validation.html
另一个选项是 xml 验证。
http://struts.apache.org/2.x/docs/validation.html
You can implement
validate()
method in your action class and add the validation code in it.For details, please read the docs.
http://struts.apache.org/2.x/docs/form-validation.html
Another option is xml validation.
http://struts.apache.org/2.x/docs/validation.html