如何在某些条件下禁用 Struts 验证
我遇到的问题是,在选择某些会使输入框禁用和空白的条件时,我需要禁用 struts 验证。
将这些输入留空会导致验证失败,这不是我需要的
The problem I have is that I need to disable struts validation when selecting certain conditions that will leave input boxes disabled and blank.
Leaving these inputs empty causes the validation to fail which is not what I need
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您触发这些条件时,在表单上设置一个属性,然后在验证器中检查该属性:
如果您使用 JavaScript 触发这些跳过验证条件,则可以使用隐藏的输入字段设置此属性:
Set a property on your form when you trigger these conditions and then check for that in your validator:
If you're triggering these skip validation conditions with javascript, you can set this property with a hidden input field: