码迷,mamicode.com
首页 > 其他好文 > 详细

yii2 下拉菜单

时间:2017-11-25 19:18:55      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:select   分类   style   get   lis   yii   reac   function   form   

model

public static function getCatlist(){
$cat = [‘0‘ => ‘暂无分类‘];
$res = self::find()->asArray()->all();
//print_r($res);die;
if($res){
foreach ($res as $k => $list) {
$cat[$list[‘id‘]] = $list[‘catname‘];
}
// print_r($cat);die;
}
return $cat;
}

 

contoller

$cats = Catmodel::getCatlist();
//print_r($cats);die;
return $this->render(‘index‘, [
‘model‘ => $model,
‘cats‘ => $cats,
]);

 

view

<?=Html::activeDropDownList($model,‘selects‘,$cats,[‘class‘=>‘form-control‘])?>

<?=Html::submitButton(‘提交‘, [‘class‘=>‘btn btn-primary‘,‘name‘ =>‘submit-button‘]) ?>
<?=Html::resetButton(‘重置‘, [‘class‘=>‘btn btn-primary‘,‘name‘ =>‘submit-button‘]) ?>

yii2 下拉菜单

标签:select   分类   style   get   lis   yii   reac   function   form   

原文地址:http://www.cnblogs.com/yszr/p/7895972.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!