0

如何使用带有 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());
4

1 回答 1

0
public static function getaccessLevel()
{
    return array(1 => '1', 2=> '2', 3=> '3');
}

echo $form->dropDownList($user,'timezone', $user->getaccessLevel());
于 2013-09-20T07:54:40.560 回答