复合材料部件的跨场验证
如何实现复合组件的跨领域验证?我使用的复合组件是一个输入文本框(一个用于电子邮件,第二个用于确认电子邮件)。我为confirmEmail 组件应用了f:validator 标记。如何在验证方法中获取电子邮件复合组件的值。是 UIComponent 还是 UINamingContainer?
How do I implement cross-field validation for composite components? The composite component I am using is an input text box (one for email and the second one for confirm email). I applied f:validator tag for the confirmEmail component. How to obtain the value for email composite component in the validate method. Is it UIComponent or UINamingContainer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从技术上讲,您的组合是一个 UINaming 容器,但任何组件都可以找到它的子组件。
我怀疑像下面这样的东西应该可以工作
可能需要添加一些空检查,可能是trim()并使用equlasIgnoreCase。
Technically, your composite is a UINamingcontainer, but any component can find its children.
I suspect something like the following should work
Might want to add some null checking, possibly trim() and use equlasIgnoreCase.
我已经实现了上面讨论的验证方法。我认为我的代码的问题是在复合组件上使用 f:validate 标签的位置。
但是当我提交表单时,验证器没有被调用。我应该将验证器包裹在组件周围还是这是正确的实现方法。
I have implemented the validate method as discussed above. I think the problem with my code is where to use the f:validate tag on composite component.
But when I submit the form the validator is not being called. Should I wrap the validator around the component or is this the correct way of implementing.