我的项目MainAds
和AdsImage
中有2个表,其结构如下
MainAds AdsImage
id id
category main_ads_id
description image
title
price
我有以下listview
<div class="container">
<div class="row">
<div class="item">
<div class="well">
<img class="img-responsive" src="http://placehold.it/700x400" alt="">
<span>$21.00</span>
<h4>
<a href="#">Project Name</a>
</h4>
</div>
</div>
</div>
</div>
这只是一个模板而且我希望显示表advertisement
中的所有数据,那么我该怎么做呢?那么我怎样才能将这些数据显示到视图文件中
到目前为止我已经尝试过这个但是我的工作不正常
<?php foreach ($dataProvider->models as $model) {
echo "<div class='item'>" +
"<div class='well'>" +
"<img class='img-responsive' src='../uploads'.'$imagemodel->image'. alt=''>" +
"<span>$21.00</span>" +
"<h4>" +
"<a href='#'>Project Name</a>" +
"</h4>" +
"</div>"+
"</div>";
}
?>
是在视图文件或其他内容上显示数据的正确方法
我知道如何使用detailview
进行操作,但我不知道如何使用不同的模型在视图页面上使用自定义布局。
我尝试了Double H在下面的回答中提出的建议,我收到如下错误
答案 0 :(得分:3)
在MainAds
模型中创建一个关系: -
public function getAdsImage(){
$this->hasOne(AdsImage::className() ,['id' => 'main_ads_id']);
}
将控制器操作Index
设为
public function actionIndex(){
$query = Addresses::find()->joinWith(['adsImage']);
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
return $this->render('index' ,['dataProvider' => $dataProvider]);
}
在index.php
视图中
<?= \yii\widgets\ListView::widget([
'dataProvider' => $dataProvider,
'itemView' => 'listview'
]); ?>
将您的listview.php
文件更改为
<div class="container">
<div class="row">
<div class="item">
<div class="well">
<?php if(ArrayHelper::getValue($model->adsImage,'image') !== null):?>
<?= \yii\helpers\Html::img($model->adsImage->image,['class' => 'img-responsive' ,'alt' =>''])?>
<?php endif; ?>
<span>$<?= $model->price?></span>
<h4>
<a href="#"><?= $model->title?></a>
</h4>
</div>
</div>
</div>
</div>