【发布时间】:2019-01-23 04:02:57
【问题描述】:
当我点击图片时的问题,图片正在下载而不是打开到其他选项卡。
@foreach($image as $get_image_value)
<div class="thumbnail">
<figure>
<a href="{{url('/storage/'.$get_image_value->image.'')}}" target="_tab">
<img src="{{url('/storage/'.$get_image_value->image.'')}}">
</a>
</figure>
</div>
@endforeach
示例图片
【问题讨论】:
-
尝试检查图像的 MIME 类型。
-
在代码中,给出了 target='_tab' ,在你问的问题中 target='_blank'.. 有什么理由吗?
标签: php html laravel laravel-blade