我正在嘗試顯示 storage/app/public 文件夾中的圖像并在本地主機和內(nèi)部網(wǎng)絡(luò)上工作,但在使用外部評估頁面時無法工作。<a href="{{URL::asset('/storage/acknowledgement/'.$DNStatus->filename)}}" target="_blank" >
<img class="img-responsive pad" src="{{URL::asset('/storage/acknowledgement/'.$DNStatus->filename)}}">
</a>
3 回答

牛魔王的故事
TA貢獻1830條經(jīng)驗 獲得超3個贊
你必須這樣使用
<img class="img-responsive pad" src="{{url('')}}/path_to_your_image_folder/{{$DNStatus->filename}}">

忽然笑
TA貢獻1806條經(jīng)驗 獲得超5個贊
如果你通過 git 在本地主機和你的服務(wù)器之間移動你的代碼,/public/storage 默認(rèn)在 Laravel .gitignore 中列出
您需要手動將文件復(fù)制到您的服務(wù)器。
無論如何,我不建議將您的資產(chǎn)存儲在 /public/storage 中,它們應(yīng)該位于 /public/assets 或類似位置。
- 3 回答
- 0 關(guān)注
- 191 瀏覽
添加回答
舉報
0/150
提交
取消