gpt4 book ai didi

php - Maatwebsite Excel 3.1 : how do I skip duplicate data when imported?

转载 作者:行者123 更新时间:2023-12-04 13:00:57 33 4
gpt4 key购买 nike

我在 Laravel Maatwebsite Excel 3.1 上使用 Excel 制作了导入数据。但是当数据库中有相同的数据(主键)时,就会出现错误消息

integrity constraint violation: 1062 Duplicate entry '188281' for key 'PRIMARY'



我试图理解 Maatwebsite 的文档,但它仍然失败
public function storeData(Request $request)
{
//VALIDASI
$this->validate($request, [
'file' => 'required|mimes:xls,xlsx'
]);
if ($request->hasFile('file')) {
$file = $request->file('file');

// dd($file); //GET FILE;
Excel::import(new MahasiswaImport, $file); //IMPORT FILE
return redirect('/mahasiswa')->with(['status' => 'Upload success']);
}
return redirect('/mahasiswa')->with(['error' => 'Please choose file before']);
}



<?php

namespace App\Imports;

use App\Mahasiswa;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithHeadingRow;
use Illuminate\Contracts\Queue\ShouldQueue;
use Maatwebsite\Excel\Concerns\WithChunkReading;
use Maatwebsite\Excel\Concerns\Importable;

class MahasiswaImport implements ToModel, WithHeadingRow, WithChunkReading, ShouldQueue

{

use Importable;
/**
* @param array $row
*
* @return \Illuminate\Database\Eloquent\Model|null
*/
public function model(array $row)
{
return new Mahasiswa([
'nim' => $row['nim'],
'slug' => str_slug($row['nim']),
'nama_mahasiswa' => $row['nama_mahasiswa'],
'email' => $row['email'],
'kode_kelas' => $row['kode_kelas'],
'alamat' => $row['alamat'],
'kode_jurusan' => $row['kode_jurusan'],
'kode_tahun_akademik' => $row['kode_tahun_akademik'],
'no_hp' => $row['no_hp'],
'tempat_lahir' => $row['tempat_lahir'],
// 'tanggal_lahir' => $row['tanggal_lahir'],
'password' => $row['password']


]);
}


public function chunkSize(): int
{
return 1000;
}

}

dd($row) in model

最佳答案

您需要验证您的 row .您可以阅读有关 Row Validation 的文档.

所以你在你的导入中需要这样的东西:

public function rules(): array
{
return [
'nim' => Rule::unique('mahasiswa', 'nim'), // Table name, field in your db
];
}

public function customValidationMessages()
{
return [
'nim.unique' => 'Custom message',
];
}

或者一些不推荐的方式:
public function model(array $data)
{
foreach($data as $row) {
$data = Mahasiswa::find($row['nim']);
if (empty($data)) {
return new Mahasiswa([
'nim' => $row['nim'],
'slug' => str_slug($row['nim']),
...
]);
}
}
}

关于php - Maatwebsite Excel 3.1 : how do I skip duplicate data when imported?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56985320/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com