如何使用带有listData()的dropDownList从yii中的整数1,2,3中进行选择。我是按照以下方式做的,但它不起作用。
public static function getaccessLevel()
{
$models[] = array(1 => '1', 2=> '2', 3=> '3');
return CHtml::listData($models, '1', '2', '3');
}
echo $form->dropDownList($user,'timezone', $user->getaccessLevel());
答案 0 :(得分:0)
public static function getaccessLevel()
{
return array(1 => '1', 2=> '2', 3=> '3');
}
echo $form->dropDownList($user,'timezone', $user->getaccessLevel());