我有一个扩展 Yii CFormModel 的模型,我想定义一个验证规则来检查属性值是否为空 - 如果是这样的话 - 将属性名称设置为空字符串,而不是更改输入值。
这种情况是否可能,或者验证规则仅用于警告和/或输入值的更改?
非常感谢任何帮助。
以下是我的模型的示例代码:
class LoginForm extends CFormModel
{
public $firstName;
public $lastName;
public function rules()
{
return array(
array('firstName, lastName', 'checkIfEmpty', 'changeAttributeName'),
);
}
// some functions
}
答案 0 :(得分:2)
不确定您的用例是否非常优雅,但以下情况应该有效:
class LoginForm extends CFormModel
{
public $firstName;
public $lastName;
public function rules()
{
return array(
array('firstName, lastName', 'checkIfEmpty'),
);
}
public function checkIfEmpty($attribute, $params)
{
if(empty($this->$attribute)) {
unset($this->$attribute);
}
}
// some functions
}
基于hamed的回复,另一种方法是使用beforeValidate()
函数:
class LoginForm extends CFormModel
{
public $firstName;
public $lastName;
protected function beforeValidate()
{
if(parent::beforeValidate()) {
foreach(array('firstName, lastName') as $attribute) {
if(empty($this->$attribute)) {
unset($this->$attribute);
}
}
}
}
}
答案 1 :(得分:1)
CModel有beforeValidate()方法。此方法在yii自动模型验证之前调用。您应该在LoginForm模型中覆盖它:
protected function beforeValidate()
{
if(parent::beforeValidate())
{
if($this->firstname == null)
$this->firstname = "Some String";
return true;
}
else
return false;
}
答案 2 :(得分:0)
您可以使用默认规则集。
public function rules()
{
return array(
array('firstName', 'default', 'value'=>Yii::app()->getUser()->getName()),
);
}
请注意,这将在验证时运行,通常是在提交表单之后。它不会使用默认值填充表单值。您可以使用afterFind()方法来执行此操作。