码迷,mamicode.com
首页 > 其他好文 > 详细

在yii2中展示表关联的数据

时间:2015-02-25 15:38:02      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

方法一:

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

方法二:

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

 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中展示表关联的数据

标签:

原文地址:http://blog.csdn.net/rogerzhanglijie/article/details/43937055

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!