当我在 Yii 的“创建”场景中创建新帖子时,我有两个字段“简短描述”和“详细描述”,所以当我第一次单击“保存”时,我收到一条消息错误“简短描述不能为空白”。并且发布不保存,如果我点击第二个然后发布是保存。我该如何解决?
PS当我从规则中删除此字段时,在第一次单击时保存。
array('title, price, short_description, long_description, store, in_stock', 'required', 'on'=>'general, create'),
谢谢!
这是因为我为 textarea 使用了一些扩展名
'short_description'=>array(
'type'=>'textarea',
'cols'=>50,
'rows'=>10,
),
'long_description'=>array(
'type'=>'textarea',
'cols'=>50,
'rows'=>14,
),
当我将 textarea 替换为文本字段时,一切正常。
但是我需要修复它,有人认为吗?
public function rules()
{
return array(
array('title, price, short_description, long_description, store, in_stock', 'required', 'on'=>'general, create'),
array('short_description', 'length', 'encoding' => 'UTF-8', 'max'=>256),
array('product_number, weight', 'safe', 'on'=>'general, create'),
array('price, in_stock', 'numerical', 'on'=>'general, create'),
array('price', 'numerical', 'integerOnly' => FALSE, 'min' => '0', 'on'=>'general, create'),
array('in_stock', 'numerical', 'integerOnly' => FALSE, 'min' => '0', 'on'=>'general, create'),
array('store','trialCreate','on'=>'create'),
array('status', 'safe', 'on'=>'create'),
array('meta_description, meta_keywords', 'safe', 'on'=>'meta'),
array('currentImage', 'safe', 'on'=>'image'),
array('newImage', 'file', 'allowEmpty'=>false, 'safe'=>true, 'types'=>'png, jpg, jpeg, gif', 'on'=>'image'),
array('categoryIDs', 'validateCategories', 'on'=>'categories'),
array('status', 'required', 'on'=>'status'),
array('store', 'safe', 'on'=>'search'),
);
}
放控制器不容易,因为我用的是垃圾
所以,我对我使用这种方式。我从所需的规则中删除字段并创建了自己的规则。
array('short_description, long_description', 'validateDescription', 'on'=>'general, create'),
/**
*
*/
public function validateDescription()
{
if($this->long_description=="")
{
$this->addError('long_description', 'Long Description cannot be blank.');
}
if($this->short_description=="")
{
$this->addError('short_description', 'Short Description cannot be blank.');
}
}
现在我需要在客户端创建验证。谢谢大家的关注!