Zend 在 Zend 表单中验证邮政编码 ->根据给定国家/地区进行验证
如何根据同一表单中“国家/地区”字段中设置的国家/地区验证表单中的邮政编码字段?
我以某种方式需要访问表单实例或另一个字段的值。有没有办法在回调验证器中做到这一点?
How can I validate a zipcode field in my form depending on the country set in the "country" field in the same form?
I somehow need to get access to the form instance or the value of another field. Is there a way to do this in a Callback validator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看此页面上的“验证上下文”注释 - http://framework .zend.com/manual/en/zend.form.elements.html(没有直接链接,只需 Ctrl+F
Validation Context
)您可以使用
$context 在自定义验证器中访问其余提交的表单数据。
Check out the "Validation Context" note on this page - http://framework.zend.com/manual/en/zend.form.elements.html (no direct link, just Ctrl+F
Validation Context
)You can use the
$context
in a custom validator to access the rest of the submitted form data.