Laravel:导入CSV - 验证

时间:2016-09-19 16:19:31

标签: php laravel validation csv maatwebsite-excel

我正在尝试通过表单验证我想要在我的数据库中插入的文件。该文件应为“csv”,并且其内容也要进行验证。

以下是控制器中处理表单的导入方法:

public function importFromCsv(array $data) {
    if (Input::hasFile('import_file')) {
        $path = Input::file('import_file')->getRealPath();

        $data = Excel::load($path, function($reader) {
            //...
        })->get();

        $this->validator = new QuoteValidator();

        $this->validate($data);

        if (!empty($data) && $data->count()) {

            foreach ($data as $key => $value) {
                $insert[] = [
                    'content' => $value->content, 
                    'created_at' => $value->created_at,
                    'updated_at' => $value->created_at
                ];
            }

            if (!empty($insert)) {
                DB::table('quotes')->insert($insert);
            }
        }
    }
    return true;
}

验证方法:

public function validate(array $data) {
    $this->validator = Validator::make($data, $this->rules, $this->messages);

    if ( $this->validator->fails() ) {
        $exception = new InvalidDataException();
        $errors = $this->_parseMessages();
        $exception->setErrors($errors);
        throw $exception;
        }
}

我得到的错误:

  

QuoteService.php第123行中的ErrorException:参数1传递给   App \ Services \ QuoteService :: validate()必须是类型数组,   给定的对象,称为   第233和第233行的/var/www/html/Acadia/app/Services/QuoteService.php   定义

1 个答案:

答案 0 :(得分:0)

您传递给validate方法的变量是Collection Object(Documentation),但您的validate方法需要一个数组。

在将数据传递给validate方法之前,必须将其转换为数组。你可以通过调用方法toArray()

来做到这一点

示例:

$data = Excel::load($path, function($reader) {
     //...
})->get()->toArray();