[moka同学笔记]Yii2.0 dropDownList的使用(二)

时间:2022-03-03 07:39:35

方法一:

<?php
$psObjs = Poststatus::find()->all();
$allStatus = ArrayHelper::map($psObjs,'id','name');
?>
<?=$form->field($model,'status')
->dropDownList($allStatus,
['prompt'=>'请选择状态']);
?>

方法二:

<?php
$psArray = Yii::$app->db->createCommand('select id,name from poststatus')->queryAll();
$allStatus = ArrayHelper::map($psArray,'id','name');
?>
<?=$form->field($model,'status')
->dropDownList($allStatus,
['prompt'=>'请选择状态']);
?>