<?= $form->field($model,'type')->dropDownList($type)->label(false);?>
两种方式
只要保证$type是数组,你这样写已经可以了
`<?= $form->field($model,’type’)->dropDownList($type,[
])->label(false);?>`
不清楚,我只是路过~
把默认值赋值给select,,,<?=Html::dropDownList(‘name’,’默认值’,$arr)?>
<?= $form->field($model,'type')->dropDownList($type)->label(false);?>
两种方式
只要保证$type是数组,你这样写已经可以了
`<?= $form->field($model,’type’)->dropDownList($type,[
])->label(false);?>`
不清楚,我只是路过~
把默认值赋值给select,,,<?=Html::dropDownList(‘name’,’默认值’,$arr)?>