我在我的Laravel应用中使用Paperclip库来处理用户的化身。实施效果很好,但是我对图片网址存在问题。
除了“ show”方法外,所有模块中的头像均显示在所有位置,例如,我注意到`/ books / a-book-name'模块中的图像URL如下所示:
http://myapp.localhost/books/storage/App/User/000/000/001/image/medium/5.png
,但是图像存储在http://myapp.localhost/storage/App/User/000/000/001/image/medium/5.png
如何从网址中删除该/books/
?
我正在这样映射用户头像:
<img src="{{Auth::user()->image->url('medium')}}" alt="..." class="img-circle profile_img">
有什么建议吗?