Questions tagged «flysystem»

13
如何在Laravel 5中使用Storage Facade获取文件URL?
我一直在尝试将新的Flysystem与Laravel 5集成在一起。我正在将“本地化”路径存储到数据库,并让Storage Facade来完成路径。例如我存储screenshots/1.jpg和使用 Storage::disk('local')->get('screenshots/1.jpg') 要么 Storage::disk('s3')->get('screenshots/1.jpg') 我可以在不同的磁盘上检索相同的文件。 get 检索文件内容,但我希望在我的视图中使用它: <img src="{{ Storage::path('screenshots/1.jpg') }}" /> 但是路径,或者任何能够检索完整路径的东西都不可用(据我所知)。那么如何返回完整路径?或者,我想知道这是否是设计使然?如果是这样,为什么我不应该获得完整的路径?还是我完全以错误的方式来做这件事?
82 php  laravel  flysystem 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.