私のアプリケーションには 2 つのテーブルがあります。products
とproduct_metas
。どちらもOne-To-One Relationship
確立しています。
テーブルとテーブルのインポートとエクスポートのソリューションとして、laravel-excelプラグインを使用しています。products
product_metas
現在、エクスポート機能は問題なく完全に機能しています。しかし、インポートは私が望むようには機能していません。
インポート用のコントローラー メソッドは次のとおりです。
public function postImportProducts(Request $request) {
Excel::load( $request->file( 'productsFile' ), function ( $reader ) {
$reader->each( function ( $sheet ) {
if ( $sheet->getTitle() === 'Product-General-Table' ) {
$sheet->each( function ( $row ) {
echo $row->name . '<br />'; // <-- outputs the name correctly.
DB::statement( 'SET FOREIGN_KEY_CHECKS=0;' );
DB::table( 'products' )->truncate();
$product = new Product;
$product->name = $row->name;
$product->amount = $row->amount;
$product->save();
DB::statement( 'SET FOREIGN_KEY_CHECKS=1;' );
});
}
if ( $sheet->getTitle() === 'Product-Meta-Table' ) {
$sheet->each( function ( $row ) {
DB::statement( 'SET FOREIGN_KEY_CHECKS=0;' );
DB::table( 'product_metas' )->truncate();
$productMeta = new ProductMeta;
$productMeta->product_id = $row->product_id;
$productMeta->description = $row->description;
$productMeta->title = $row->title;
$productMeta->keywords = $row->keywords;
$productMeta->save();
DB::statement( 'SET FOREIGN_KEY_CHECKS=1;' );
});
}
});
});
}
何が間違っているのかわかりませんが、次のようになりますErrorException
。
SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'name' cannot be null (SQL: insert into `products` (`name`, `amount`, `updated_at`, `created_at`) values (, , 2015-07-16 09:18:02, 2015-07-16 09:18:02))
編集1:
製品モデル:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
/**
* Properties that are mass assignable
*
* @var array
*/
protected $fillable = ['name', 'amount'];
public function categories()
{
return $this->belongsToMany('App\Category');
}
public function meta()
{
return $this->hasOne('App\ProductMeta');
}
}
製品メタモデル
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ProductMeta extends Model
{
protected $fillable = ['product_id', 'title', 'description', 'keywords'];
public function product()
{
return $this->belongsTo('App\Product');
}
}
これで私を助けてください。