首页 > 解决方案 > Laravel中图像路径中的正斜杠问题

问题描述

在我的 Laravel 网站图像名称是

images/campaign/4965d649233e1436ece21804ff4eb62b.jpeg

实际图像路径是http://localhost/fund/storage/app/images/campaign/4965d649233e1436ece21804ff4eb62b.jpeg

但是在我的刀片模板中,当我使用此路径时,它会自动转换为 http://localhost/fund/storage/app/images%2Fcampaign%2F4965d649233e1436ece21804ff4eb62b.jpeg

这就是为什么我的图像没有显示。

刀片模板中的 Img src 代码

src="{{url('/storage/app',$response->large_image)}}" 

为什么/会被自动替换%2F ,如何解决?

有人帮忙吗?

标签: phplaravellaravel-5.5laravel-blade

解决方案


将刀片更改为以下内容:

src="{{url('/storage/app/'.$response->large_image)}}"

我已将逗号更改为一个点,它将图像的路径附加到该/storage/app部分,因此它不会对最后一部分进行编码。


推荐阅读