我正在做的是尝试使用yii select2扩展来创建可搜索的下拉列表。我已经从此链接下载了该扩展程序,然后关注该扩展程序" http://www.yiiframework.com/extension/select2/"。 我已经将解压缩的文件(这是select2)放在protected / extensions中,然后我在" protected / views / site / select.php"中创建了一个php文件。我粘贴下面的代码,当我尝试通过" webapp / index.php / site / login"它给出了这个错误" 错误404 系统无法找到所请求的操作"选择"。"请帮帮我,谢谢你。!!
//code in select.php(protected/views/site/select.php)
$tags=array('Satu','Dua','Tiga');
echo CHtml::textField('test','',array('id'=>'test'));
$this->widget('ext.select2.ESelect2',array(
'selector'=>'#test',
'options'=>array(
'tags'=>$tags,
),
));
答案 0 :(得分:1)
您似乎已制作了视图文件(protected/views/site/select.php)
,但您尚未创建相应的操作。
加入SiteController
:
public function accessRules() {
//You can modify accordingly but you have to insert select to allowable actions
return array(
array('allow', // allow all users to perform 'index', 'contact' and 'select' actions
'actions'=>array('index', 'contact', 'select'),
'users'=>array('*'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
public function actionSelect() {
$this->render('select');
}