Symfony:如何在不覆盖现有验证器的情况下添加后验证器?
我正在使用 sfGuard 插件,默认情况下的注册表单有一些帖子验证器(用于用户名和电子邮件)。
我用谷歌搜索了很多,但没有找到任何添加帖子验证器而不必重写它们的方法/技巧......
因为当我这样做时:
$this->validatorSchema->setPostValidator(
new sfValidatorCallback(array('callback' => array($this, 'checkPassword')))
);
所有其他帖子验证器似乎都消失了。
I'm using sfGuard plugin, and the register form by default has a few post validators (for username and email).
I googled alot and haven't found any methods/hacks for adding post validators without having to rewrite them all...
Because when I do:
$this->validatorSchema->setPostValidator(
new sfValidatorCallback(array('callback' => array($this, 'checkPassword')))
);
all the other post validators seem to disappear.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this one: