.xlsx
バージョン3.1を使用して、Laravel
バージョン5.7でMaatwebsite-Excel
ファイルをインポートしようとしています。私が達成したいのは、データベース内の列ヘッダーのインポートを避けるために、ファイルの最初の行をスキップすることです。
skip()
メソッドを呼び出して、バージョン2構文を使用しようとしました。
public function voter_import(Request $request)
{
if (empty($request->file('file')->getRealPath()))
{
return back()->with('success','No file selected');
}
else
{
Excel::import(new VotersImport, $request->file('file'))->skip(1);
return response('Import Successful, Please Refresh Page');
}
}
class VotersImport implements ToModel
{
public function model(array $row)
{
return new Voter([
'fname' => $row[0],
'lname' => $row[1],
'phone' => $row[2],
'gender' => $row[3],
'state' => $row[4],
'occupation' => $row[5],
'address' => $row[6],
'vin' => $row[7],
'dob' => $row[8],
'campaign_id' => $row[9],
]);
}
}
エラーメッセージ:
Call to undefined method Maatwebsite\Excel\Excel::skip()
あなたはstartrowを実装することができます
use Maatwebsite\Excel\Concerns\WithStartRow;
class VotersImport implements ToModel, WithStartRow
{
/**
* @return int
*/
public function startRow(): int
{
return 2;
}
}
_
もう1つの選択肢は、HeadingRowを使用することです https://docs.laravel-excel.com/3.1/imports/heading-row.html
Excelファイルをロードする前にこのコードを追加してください。
config(['Excel.import.startRow' => your_number_of_row_to_skip]);
_
ex :
$path = $request->file('select_file')->getRealPath();
config(['Excel.import.startRow' => 4]);
$data = Excel::load($path)->get();
_