0
我有一個模型CakePHP - 如何將更多驗證字段添加到現有模型?
class Model extends AppModel {
public function __construct() {
parent::__construct();
$this->validate=array(
'first_name' => array(
'NotEmpty' => array(
'rule' => 'NotEmpty',
'required' => true,
'message'=> 'Not empty'
)
),
'last_name' => array(
'NotEmpty' => array(
'rule' => 'NotEmpty',
'required' => true,
'message'=> 'Not empty'
)
),
);
}
}
問題是鑑於我有一個動態數據需要驗證(姓氏和名字最多30)。我如何將它們動態添加到Model中並在Controller中進行驗證?