Yii中的CHtml :: radioButtonList验证

时间:2014-02-12 12:11:57

标签: yii yii-chtml

我在我的Yii项目中使用Chtml作为我的一个表单。

我已经以这种形式实现了radioButton,即

   <?php echo CHtml::radioButtonList('asset', 'asset', $listAsset, array('uncheckValue'=>null));?>

我该怎样对此进行验证?

1 个答案:

答案 0 :(得分:2)

我们不希望在表单中使用模型名称意味着尝试以下步骤

分配属性值后,您可以将post值分配给模型属性

一旦在MODEL的规则功能中指定了验证,就可以使用以下步骤。

示例:

$model->attributes = $_POST['model']; //if you use model name in other fields  

$model->asset = $_POST['asset'];