在页面“ https://project.test”中,有一个类似img的视频:
<img src="{{ $conference->image == null ? '/img/5.png' : $conference->image }}"
然后出现图像。生成的src就像“ https://project.test/uploads/conferences/test.png”。
但是在会议详细信息页面“ https://project.test/conference/1/conference-test”中也使用:
<img src="{{ $conference->image == null ? '/img/5.png' : $conference->image }}"
图像不出现。生成的src就像“ https://project.test/conference/1/uploads/conferences/test.png”。
答案 0 :(得分:1)
尝试像这样更改代码:
<img src="/{{ $conference->image or 'img/5.png' }}" />
答案 1 :(得分:0)
尝试将代码更改为
<img src="{{ $conference->image == null ? url('img/5.png') : url($conference->image) }}"
使用url()
函数生成图像的正确路径。