下拉菜单 – Yii2 dropdownList选择默认选项

前端之家收集整理的这篇文章主要介绍了下拉菜单 – Yii2 dropdownList选择默认选项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在网址中通过GET返回cat_id值来表示我的下拉列表,必须选择哪个项目.
但它不起作用.
<?= $form->field($model,'cat_id')->dropDownList(
ArrayHelper::map(DeviceCats::find()
->where(['is_deleted' => 'no'])->all(),'id','title'),['options' => [$_GET['cat_id'] => ['selected'=>true]],'prompt' => ' -- Select Category --']) ?>
终于以令人难以置信的变化解决了.刚刚将所选的第一个字母更改为大写(‘selected’应为’Selected’).
这是代码
<?= $form->field($model,['options' => [$_GET['cat_id'] => ['Selected'=>'selected']],'prompt' => ' -- Select Category --']) ?>
原文链接:https://www.f2er.com/php/136108.html

猜你在找的PHP相关文章