1

我正在尝试验证要通过表单插入到我的数据库中的文件。该文件应该是“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:传递给 App\Services\QuoteService::validate() 的参数 1 必须是数组类型,给定对象,在 /var/www/html/Acadia/app/Services/QuoteService.php 中调用在第 233 行并定义

4

1 回答 1

0

您传递给 validate 方法的变量是一个集合对象(Documentation),但您的 validate 方法需要一个数组。

在将数据传递给验证方法之前,您必须将其转换为数组。你可以通过调用方法来做到这一点toArray()

例子:

$data = Excel::load($path, function($reader) {
     //...
})->get()->toArray();
于 2016-09-19T17:49:37.677 回答