多表关联的下拉列表

来源:互联网 发布:淘宝网购物天猫 编辑:程序博客网 时间:2024/06/12 18:54
安装yii2-widget-select2插件
链接地址 https://github.com/kartik-v/yii2-widget-select2
修改_form.php文件
#code ...
use app\models \types;
use yii\ helpers\ArrayHelper;
#code ...

<?php $form = ActiveForm:: begin(); ?>

<?= $form-> field($model , 'member_type')-> widget(Select2 ::classname(), [
   
 'data' =>ArrayHelper:: map(types ::find() ->all(), 'type_id','type_name' ),
   
 'language' => 'en',
   
 'options' => ['placeholder' => 'Select a type ...'],
   
 'pluginOptions' => [
   
 'allowClear' => true
],
]);
?>
#code ... 

<?php ActiveForm::end (); ?>
#code ...

0 0