在yii2中展示表关联的数据

方法一:

在数据库中构建数据表的时候,首先把表之间的关联关系也定义进去;

方法二:

在模型中定义表之间的关联关系,如下:

 public function getAuthor(){

        return $this->hasOne(Author::className(),['id'=>'author_id']);
 }

此方法中的getAuthor为一对一的关系。


在视图中利用yii\helpers\ArrayHepler 类来填充下拉列表内容:

  echo $form->field($model,'author_id')->dropDownList(ArrayHelper::map(Author::find()-> select( 'id, firstname, surname' ) ->all(),'id','displayName'),['class'=>"form-control inline-block"]);


你可能感兴趣的:(在yii2中展示表关联的数据)