如何创建需要访问其他字段值的 Symfony 验证器?
我想实现一个 Symfony 验证器来验证注册表单的密码,这意味着我需要一个“密码确认”字段。我如何制作一个验证器以某种方式将这些字段联系在一起?我需要检查密码和密码确认值是否匹配。
这些东西是如何在 Symfony 中正确实现的?
I want to implement a Symfony validator that validates passwords for a registration form, which means I want a 'Password confirm' field. How do I make a validator that somehow ties these fields together? I need to check if the password and password confirm values match.
How are stuff like these implemented properly in Symfony?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 postValidator 。检查文档,有一个密码确认验证的示例。
You can use a postValidator . Check the documentation, there is an example with the password confirm validation.