在我的Laravel网站中,图片名称是
images/campaign/4965d649233e1436ece21804ff4eb62b.jpeg
实际图片路径为http://localhost/fund/storage/app/images/campaign/4965d649233e1436ece21804ff4eb62b.jpeg
但是在我的刀片服务器模板中,当我使用此路径时,它会自动转换为
http://localhost/fund/storage/app/images%2Fcampaign%2F4965d649233e1436ece21804ff4eb62b.jpeg
这就是为什么我的图片无法显示的原因。
在刀片模板中输入src代码
src="{{url('/storage/app',$response->large_image)}}"
为什么/
被%2F
自动替换,以及如何解决?
请问有人帮忙吗?
答案 0 :(得分:3)
将刀片更改为以下内容:
src="{{url('/storage/app/'.$response->large_image)}}"
我将逗号更改为一个点,该点将图像的路径附加到/storage/app
部分,因此它不对最后一部分进行编码。
答案 1 :(得分:0)
使用双引号而不是单引号时无需使用串联
src='{{url("/storage/app/$response->large_image")}}'