2011-11-08 63 views
1

我有一个问题,当我尝试在动作类文件中使用setValidator()(而不是setValidators)。setValidator()in action class

这是我的基本形式类代码..

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; 
     } 

     } 
    } 

我收到以下错误

Catchable fatal error: Argument 2 passed to sfForm::setValidator() must be an instance of sfValidatorBase, none given, called in /home/hardik/web/demo/apps/frontend/modules/user/actions/actions.class.php on line 77

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

回答

3

您的语法错误。看看setValidator的签名。 您应该这样做:

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

Thanx greg0ire :) – hardik