我的目标是管理最大上传文件异常,并显示客户端友好消息,但我不知道哪里是控制此问题的最佳位置。这是我的控制器方法:
public function upload_file()
{
if (!Input::hasFile('file'))
return;
$utils = App::make('utils');
$file = Input::file('file');
$name = Input::get('name');
$size = $file->getSize();
if ($size > FileModel::$max_file_size)
return json_encode(array('success'=>false, 'message'=>sprintf('The file size should be lower than %smb.',FileModel::$max_file_size/1000000)));
$original_file_name = $file->getClientOriginalName();
$destination_directory = "";
$final_file_name = $utils->copy_file_to_location($file);
return json_encode(array('success'=>true, 'file'=>$original_file_name));
}
这是utils copy_file_to_location方法:
public function copy_file_to_location($file, $destination_directory = "")
{
if (!isset($file))
return;
$file_name = time()."_".$file->getClientOriginalName();
$file->move(app_path().'/storage/files/'.$destination_directory, $file_name);
return $file_name;
}
我不知道在哪里处理上传文件大小超过服务器最大上传文件大小变量的文件时引发的异常。我应该在何处以及如何处理此消息以显示用户友好的消息,并且不要锁定用户界面。顺便说一下,我在客户端使用ExtJs 4。感谢。
修改
我发现了一个相关的question有很多帮助(这是同样的问题),但我需要知道在Laravel里面我应该检查一下。
答案 0 :(得分:9)
有两种情况:文件大小大于php变量upload_max_filesize
,第二种情况是大于post_max_size
变量的大小。在第一个例子中引发了一个例外,因此它很容易捕获它。在第二种情况下,没有例外,我使用this问题来解决它。
现在,检查此代码:在Laravel控制器aciton方法中。我认为控制器动作中的代码从未被执行过,但我错了。所以最后这是一种解决这个问题的方法:
public function upload_file()
{
$file_max = ini_get('upload_max_filesize');
$file_max_str_leng = strlen($file_max);
$file_max_meassure_unit = substr($file_max,$file_max_str_leng - 1,1);
$file_max_meassure_unit = $file_max_meassure_unit == 'K' ? 'kb' : ($file_max_meassure_unit == 'M' ? 'mb' : ($file_max_meassure_unit == 'G' ? 'gb' : 'unidades'));
$file_max = substr($file_max,0,$file_max_str_leng - 1);
$file_max = intval($file_max);
//handle second case
if((empty($_FILES) && empty($_POST) && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) == 'post'))
{ //catch file overload error...
//grab the size limits...
return json_encode(array('success'=>false, 'message'=>sprintf('The file size should be lower than %s%s.',$file_max,$file_max_meassure_unit)));
}
try{
if (!Input::hasFile('file'))
return;
$utils = App::make('utils');
$file = Input::file('file');
$name = Input::get('name');
$size = $file->getSize();
if ($size > $file_max)
return json_encode(array('success'=>false, 'message'=>sprintf('El tamaño del archivo debe ser menor que %smb.',$file_max)));
$original_file_name = $file->getClientOriginalName();
$destination_directory = "";
$final_file_name = $utils->copy_file_to_location($file);
return json_encode(array('success'=>true, 'file'=>$original_file_name));
}
catch (Exception $e)
{
//handle first case
return json_encode(array('success'=>false, 'message'=>sprintf('The file size should be lower than %s%s.',$file_max,$file_max_meassure_unit)));
}
}
答案 1 :(得分:2)
旧帖但仍然是相关问题。 使用\ Illuminate \ Foundation \ Http \ Middleware \ VerifyPostSize中间件 并处理Handler.php render()方法中的错误 检查中间件文档https://laravel.com/docs/5.5/middleware#registering-middleware
这是我在Handler.php中的方法:
public function render($request, \Exception $exception)
{
//thats the json your client will recieve as a response, can be anything you need
$response = [
'code' => 500,
'status' => 'error',
'message' => 'Internal server error.',
'exception' => get_class($exception),
'exception_message' => $exception->getMessage(),
'url' => $request->decodedPath(),
'method' => $request->method(),
];
if (env('APP_ENV') === 'local') {
$response['trace'] = $exception->getTrace();
}
if ($exception instanceof PostTooLargeException) {
$response['code'] = 413; //Payload too large
$response['message'] = $response['message'] .' The maximum request size is: ' .ini_get('post_max_size');
}
return response()->json($response, $response['code']);
}
答案 2 :(得分:1)
您在相关问题中看到的设置“upload_max_filesize”和“post_max_size”不是由Laravel处理的,它是位于PHP安装中的php.ini配置文件的一部分。