struts2验证
我在表单中有一个文本字段和一个选择框(用户可以通过 ctrl 键选择多个值)。
我正在阅读struts2提供的验证: http://struts.apache.org/ 2.x/docs/validation.html
但是,它似乎没有我需要的验证。
我想仅当从选择框中选择某些字符串时才将文本字段设为必填字段。
我是否必须为此目的编写一个自定义验证器,或者是否有更简单的方法在 struts2 中实现此目的?
谢谢!
PS:我想知道其他语言/框架也如何处理这种情况。
I have a text field and a selectbox (users can select multiple values by ctrl) in a form.
I was reading validation provided by struts2: http://struts.apache.org/2.x/docs/validation.html
However, it doesnt seem to have the validation I need.
I want to make the text field a required field ONLY when certain strings are selected from the selectbox.
Do I have to write a custom validator for this purpose or is there a simpler way to achieve this in struts2.
thanks!
PS: I would like to know how other languages/frameworks might handle this case also.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表达式 或 字段表达式 适合检查依赖于其他字段的字段。 例如,要检查已确认的电子邮件地址,您可以执行以下操作:
创建自定义验证器虽然很简单,但易于重用。
Expression or field expression caters for checking fields dependent on other fields. For example, to check for a confirmed email address you could do the following:
Creating a custom validator is trivial though, and easy to reuse.