0

我已经完成了上传图像文件的教程。当用户上传大于 2MB 的文件时,如何在视图中验证文件上传?

创建.blade.php

@if (count($errors) > 0)
    <div class="alert alert-danger">
        <strong>Whoops!</strong> Errors.<br><br>
        <ul>
            @foreach ($errors->all() as $error)
                <li>{{ $error }}</li>
            @endforeach
        </ul>
    </div>
@endif
@if(session('success'))
    <div class="alert alert-success">
        {{ session('success') }}
    </div>
@endif
<div class="form-group">
    <input type="file" name="photos[]" multiple aria-describedby="fileHelp"/>
    <small id="fileHelp" class="form-text text-muted">jpeg, png, bmp - 2MB.</small>
</div>

规则

public function rules()
{
    $rules = [
        'header' => 'required|max:255',
        'description' => 'required',
        'date' => 'required',
    ];
    $photos = $this->input('photos');
    foreach (range(0, $photos) as $index) {
        $rules['photos.' . $index] = 'image|mimes:jpeg,bmp,png|max:2000';
    }

    return $rules;
}

一切都很好,但是当我尝试上传大于 2MB 的文件时,它给了我一个错误:

Illuminate \ Http \ Exceptions \ PostTooLargeException 没有消息

我该如何解决这个问题并保护这个异常?

4

4 回答 4

2

在 laravel 中,您无法在控制器中处理这种情况,因为它不会到达控制器/customrequest 并将在中间件中处理,因此您可以在 ValidatePostSize.php 文件中处理此问题:

public function handle($request, Closure $next)
 {
  //       if ($request->server('CONTENT_LENGTH') > $this->getPostMaxSize()) 
            {
             //            throw new PostTooLargeException;
  //        }

   return $next($request);
 }



/**
 * Determine the server 'post_max_size' as bytes.
 *
 * @return int
 */
protected function getPostMaxSize()
{
    if (is_numeric($postMaxSize = ini_get('post_max_size'))) {
        return (int) $postMaxSize;
    }

    $metric = strtoupper(substr($postMaxSize, -1));

    switch ($metric) {
        case 'K':
            return (int) $postMaxSize * 1024;
        case 'M':
            return (int) $postMaxSize * 1048576;
        default:
            return (int) $postMaxSize;
    }
}

与您的自定义消息

或在 App\Exceptions\Handler 中:

   public function render($request, Exception $exception)
   {
      if ($exception instanceof \Illuminate\Http\Exceptions\PostTooLargeException) {
        // handle response accordingly
      }
      return parent::render($request, $exception);
   }

否则需要更新 php.ini

upload_max_filesize = 10MB

如果您不使用上述任何解决方案,您可以使用客户端验证,就像您使用 jQuery 一样,例如:

$(document).on("change", "#elementId", function(e) {
 if(this.files[0].size > 7244183)  //set required file size 2048 ( 2MB )
  { 
     alert("The file size is too larage");
    $('#elemendId').value = ""; 
  }
});

或者

<script type="text/javascript"> 
 function ValidateSize(file) { 
   var FileSize = file.files[0].size / 1024 / 1024; // in MB 
   if (FileSize > 2) { 
     alert('File size exceeds 2 MB'); 
      $(file).val(''); //for clearing with Jquery 
   } else { 

   } 
 } 
</script>
于 2018-11-28T09:57:37.410 回答
1

您已在 $rules 中验证图像。试试这个代码:

$this->validate($request,[
                'header' => 'required|max:255',
                'description' => 'required',
                'date' => 'required',
                'photos.*' => 'image|mimes:jpeg,bmp,png|max:2000',
    ]);
于 2018-11-28T09:37:18.417 回答
0

Laravel 使用它的 ValidatePostSize 中间件检查请求的 post_max_size,如果请求的 CONTENT_LENGTH 太大,则抛出 PostTooLargeException。这意味着如果在到达控制器之前抛出异常。

您可以做的是在 App\Exceptions\Handler 中使用 render() 方法,例如

public function render($request, Exception $exception){
   if ($exception instanceof PostTooLargeException) {
      return response('File too large!', 422);
   }

   return parent::render($request, $exception);
}

请注意,您必须从此方法返回响应,不能像从控制器方法中那样仅返回字符串。

上面的响应是复制返回 'File too large!'; 您在问题的示例中,显然可以将其更改为其他内容。

希望这可以帮助!

于 2018-11-28T09:36:32.927 回答
0

您可以尝试将自定义消息放入消息中或在类中message()添加PostTooLargeException处理程序。Handler像这样的东西:

public function render($request, Exception $exception)
{
...
    if($exception instanceof PostTooLargeException){
                return redirect()->back()->withErrors("Size of attached file should be less ".ini_get("upload_max_filesize")."B", 'addNote');
        }
...
}
于 2018-11-28T09:37:18.193 回答