Yiiで簡単なプログラムを試しています
// これは私のモデルです
<?php
class Create extends CFormModel
{
public $a;
public $b;
public $c;
public $d;
public $e;
public $f;
public function rules() {
return array(
array('a, b, c, d, e, f', 'required'),
array('a, b, c, d, e, f', 'numerical', 'integerOnly' => true),
);
}
}
?>
// this is the action in my controller
public function actionCreate()
{
$model = new Create;
$this->render('create',$model);
}
// this is my view
<?php
$form=$this->beginWidget('CActiveForm');
echo $form->textField($model,'a');
$this->endWidget();
?>
このエラーが発生しています..
致命的なエラー: 2236 行目の C:\xampp\htdocs\crudyii\framework\web\helpers\CHtml.php の非オブジェクトに対するメンバー関数 getValidators() の呼び出し
前もって感謝します。