如何在Laravel中验证文件上传

时间:2018-11-28 09:27:43

标签: laravel laravel-validation laravel-filesystem

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

create.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 个答案:

答案 0 :(得分:1)

在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>

答案 1 :(得分: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);
}

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

以上响应是复制返回“文件太大!”;在问题的示例中,您显然可以将其更改为其他内容。

希望这会有所帮助!

答案 2 :(得分: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');
        }
...
}

答案 3 :(得分:0)

您已经在$条规则中验证了图片。尝试以下代码:

$this->validate($request,[
                'header' => 'required|max:255',
                'description' => 'required',
                'date' => 'required',
                'photos.*' => 'image|mimes:jpeg,bmp,png|max:2000',
    ]);