4

如何在 Laravel 4 中验证上传的文件数组?我已将其设置为允许多个文件的形式,并且我已经测试了这些文件是否存在于 Input::file('files') 数组中。但是如何验证每个文件?

这是我尝试过的:

$notesData = array(
            'date' => Input::get('date'),
            'files' => Input::file('files')
    );


    // Declare the rules for the form validation.
    $rules = array(
            'date'  => 'Required|date_format:Y-m-d',
            'files'  => 'mimes:jpeg,bmp,png,pdf,doc'
    );

    // Validate the inputs.
    $validator = Validator::make($notesData, $rules);

    // Check if the form validates with success.
    if ($validator->passes())
    {
        // Redirect to homepage
        return Redirect::to('')->with('success', 'Validation passed!');
    }

    // Something went wrong.
    return Redirect::to(URL::previous())->withErrors($validator)->withInput(Input::all());

我希望 Validator 抱怨在数据数组中传递文件数组,但即使我发送的文件是 mp3,它也只是通过了验证。当我尝试上传多个文件时,它给出了一个不相关的错误,即需要日期字段(尽管日期字段是自动填充的)。

我对 Laravel 很陌生。我该怎么做才能让它工作?

更新:我发现问题的一部分是我的upload_max_filesize和post_max_size,我修复了。我还尝试将文件动态添加到数组中,如下所示:

$notesData = array(
            'date' => Input::get('date')
    );
    $i=0;
    foreach(\Input::file('files') as $file){
        $notesData['file'.++$i] = $file;
    }

    // Declare the rules for the form validation.
    $rules = array(
            'date'  => 'Required|date_format:Y-m-d'
    );
    for($j=1; $j<=$i; $j++){
        $rules['file'.$j] ='mimes:jpeg,bmp,png,doc'; 
    }

但现在我收到以下错误:

'Symfony\Component\HttpFoundation\File\UploadedFile' 的序列化是不允许的

我迷路了。知道如何解决这个问题吗?

4

4 回答 4

11

我认为,这基本上是您最初的解决方案。对于仍然感到困惑的任何人,这里有一些对我有用的代码……</p>

// Handle upload(s) with input name "files[]" (array) or "files" (single file upload)

if (Input::hasFile('files')) {
    $all_uploads = Input::file('files');

    // Make sure it really is an array
    if (!is_array($all_uploads)) {
        $all_uploads = array($all_uploads);
    }

    $error_messages = array();

    // Loop through all uploaded files
    foreach ($all_uploads as $upload) {
        // Ignore array member if it's not an UploadedFile object, just to be extra safe
        if (!is_a($upload, 'Symfony\Component\HttpFoundation\File\UploadedFile')) {
            continue;
        }

        $validator = Validator::make(
            array('file' => $upload),
            array('file' => 'required|mimes:jpeg,png|image|max:1000')
        );

        if ($validator->passes()) {
            // Do something
        } else {
            // Collect error messages
            $error_messages[] = 'File "' . $upload->getClientOriginalName() . '":' . $validator->messages()->first('file');
        }
    }

    // Redirect, return JSON, whatever...
    return $error_messages;
} else {
    // No files have been uploaded
}
于 2013-11-21T10:17:38.983 回答
3

好吧,我不确定是什么导致了错误,但是在使用验证器玩了一下之后,我发现我不能一次传递所有文件。相反,我创建了一个新数组,将每个文件与键“file0”、“file1”等相关联。然后我将它们传递给验证器并为每个文件设置规则(使用 foreach 循环)。然后验证器按预期工作。尽管如此,它仍然不够灵活,无法满足我的需求,我最终使用了非 laravel 解决方案。

于 2013-09-18T10:34:45.433 回答
1

它可能不是您问题的直接答案,但您可以对以下类型进行简单的验证检查:

$file = Input::file('files');

switch($file->getClientMimeType()){
      case 'application/pdf':
           // upload stuff
      break;
}
于 2013-08-06T16:12:56.047 回答
0
foreach(Request::file('photos') as $key => $value) {
    $rules['photos.'.$key]="mimes:jpeg,jpg,png,gif|required|max:10000";
    $friendly_names['photos.'.$key]="photos";
}

这在 Laravel 5.2 中对我有用

于 2016-05-17T15:34:09.163 回答