Laravel 中图像路径中的正斜杠问题

Forward slash problem in image path in Laravel

在我的 Laravel 网站图片名称是

images/campaign/4965d649233e1436ece21804ff4eb62b.jpeg

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

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

这就是我的图片没有显示的原因。

blade 模板中的 Img src 代码

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

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

有人帮忙吗?

将 blade 更改为以下内容:

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

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

使用双引号而不是单引号时无需使用连接

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