我在 Heroku 中使用 Laravel 5.1 框架和 Clear DB 插件将文件上传到 Heroku 应用程序时遇到问题。
已经阅读了 Laravel 文档,但我认为问题出在保存方法中......我的意思是在本地模式下它工作正常:
1) \Storage::disk('local')->put($name, \File::get($file));
or
2)
$name = $request->file->getClientOriginalName();
Storage::put($name,
file_get_contents($request->file('path')->getRealPath())
);
I use "\Storage::disk('local')" because i supose 's3' for amazon and Rackspace Cloud Storage... shall i use disk('web') or something like that?
any suggestion?