Symfony:如何在不覆盖现有验证器的情况下添加后验证器?

发布于 2024-11-25 01:17:33 字数 319 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

塔塔猫 2024-12-02 01:17:33

试试这个:

$this->mergePostValidator(
  new sfValidatorCallback(array('callback' => array($this, 'checkPassword')))
);

Try this one:

$this->mergePostValidator(
  new sfValidatorCallback(array('callback' => array($this, 'checkPassword')))
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文