我有代码来显示这样的视图
<div class="col-md-10">
<div class="col-md-4">
<?php
$items = [];
foreach ($team->gallery as $item){
$items[] = [
'content' => '<img style="width:300px;" src="'.$item->filepath.'"/>',
'caption' => '<h4>'.$item->name.'</h4><p>'.$item->description.'</p>',
];
}
echo Carousel::widget([
'items' => $items,
]);
?>
</div>
和像这样的画廊模型
public function getLeague(){
return $this->hasOne(Leagues::className(), ['id' => 'league_id']);
}
public function getGallery(){
return $this->hasMany(TeamGalleries::className(), ['team_id' => 'id']);
}
但是我无法在我的数据库中获取文件路径,因此我无法在我的网站上显示我的图片,如何解决这个问题?
我使用 Yii2,图片的文件夹上传在 Yii2 Basic 的 Web 文件夹中
如果你的图片在 web 文件夹中,你可以很容易地使用 Yii 别名,它有一个这个文件夹的条目:@web
。
// Replace this
'<img style="width:300px;" src="'.$item->filepath.'"/>'
// with
'<img style="width:300px;" src="' . Yii::getAlias('@web') . '/' . $item->filepath . '"/>'
有关指南中别名的更多信息。