动作类中的setValidator()

时间:2011-11-08 12:41:15

标签: php symfony1 symfony-1.4

当我尝试在动作类文件中使用setValidator()(不是setValidators)时,我遇到了一个问题。

这是我的基本表单类代码..

public function setup()
  {
    $this->setWidgets(array(
      'id'         => new sfWidgetFormInputHidden(),
      'name'       => new sfWidgetFormInputText(),
      'age'        => new sfWidgetFormChoice(array('choices' => array('21' => '21', '22' => '22', '23' => '23', '24' => '24', '25' => '25', '26' => '26', '27' => '27', '28' => '28', '29' => '29', '30' => '30'))),
      'gender'     => new sfWidgetFormChoice(array('choices' => array('Male' => 'Male', 'Female' => 'Female'))),
      'email'      => new sfWidgetFormInputText(),
      'salt'       => new sfWidgetFormInputText(),
      'password'   => new sfWidgetFormInputPassword(array('type' => 'password')),
      'created_at' => new sfWidgetFormDateTime(),
      'updated_at' => new sfWidgetFormDateTime(),
    ));

    $this->setValidators(array(      
      'id'         => new sfValidatorPass(),    
      'name'       => new sfValidatorString(array('required' => true)),
      'age'        => new sfValidatorPass(),      
      'gender'     => new sfValidatorChoice(array('choices' => array('Male','Female'))),
      'email'      => new sfValidatorEmail(array('required' => true)),
      'password'   => new sfValidatorString(array('required' => true)),
      'created_at' => new sfValidatorDateTime(),
      'updated_at' => new sfValidatorDateTime(),
    ));

    $this->widgetSchema->setNameFormat('signin[%s]');

    $this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);


    //$this->validatorSchema->setPostValidator(new sfUserValidate());

    $this->setupInheritance();

    parent::setup();
  }

这是我的动作类代码..

public function executeNewuser($request)
  {
      $this->form = new UsersForm();
      $this->form->getWidgetSchema()->setNameFormat('users[%s]');

      //$this->form->setValidators(array('name' => new sfValidatorDoctrineUnique(array('model'  => 'Users','column' => 'name'))));

      $this->form->setValidator(array('name' => new sfValidatorDoctrineUnique(array('model'  => 'Users','column' => 'name'))));



      if($request->isMethod('post'))
      {
        $this->form->bind($request->getParameter('users'));
        if($this->form->isValid())
        {      
            echo "Hello";exit;
        }  

      }
  }

我收到以下错误

  

捕获致命错误:传递给sfForm :: setValidator()的参数2必须是sfValidatorBase的实例,没有给出,在/ home / hardik / web / demo / apps / frontend / modules / user / actions / actions中调用。第77行的class.php

我只需要在动作类中覆盖名称字段的验证器。

1 个答案:

答案 0 :(得分:3)

你的语法错了。看看setValidator的签名。 你应该这样做:

$this->form->setValidator(
  'name', 
  new sfValidatorDoctrineUnique(array('model'  => 'Users','column' => 'name')));
相关问题