How to make a drop down list in yii2?

前端 未结 12 2009
天命终不由人
天命终不由人 2020-12-04 13:07

How to make a dropdown in yii2 using an activeform and a model? Since all the methods has changed in yii2,how it is done

12条回答
  •  一整个雨季
    2020-12-04 13:48

    If you made it to the bottom of the list. Save some php code and just bring everything back from the DB as you need like this:

     $items = Standard::find()->select(['name'])->indexBy('s_id')->column();
    

提交回复
热议问题