我正在尝试在数据库中保存产品的多个图像。我创建了图像表并与产品表建立了关系。
控制器
public function store(Request $request)
{
$formInput = $request->all();
$image = array();
if ($files = $request->file('image')) {
foreach ($files as $file) {
$name = $file->getClientOriginalName();
$file->move('images', $name);
$image[] = $name;
}
}
//dd($formInput);
Product::create(array_merge($formInput,
[
// 'product_id'=>$product->id,
'image' => 'what to put here',
'seller_id' => Auth::user()->id,
]));
return redirect()->back();
}
图片模型
class Image extends Model
{
protected $table = 'images';
protected $fillable = ['product_id', 'image'];
public function product()
{
return $this->belongsTo('App\Product', 'product_id');
}
}
产品型号
class product extends Model
{
protected $table = 'products';
protected $primaryKey = 'id';
protected $fillable = ['seller_id', 'pro_name', 'pro_price', 'pro_info', 'stock', 'category_id'];
public function images()
{
return $this->hasMany('App\Image', 'product_id');
}
}
当我dd($formInput)
看到所有细节时,包括图像,但是如何将它们提交到数据库?图片到图片表,产品详细信息到产品表。
答案 0 :(得分:0)
您应该在使用Image :: create()的图像表中使用插入图像,并在图像表中使用产品ID的外键(product_id)。在产品表中将没有关于图像的条目。只需创建具有常规字段且不包含任何图像细节的产品即可。
public function store(Request $request)
{
$formInput = $request->all();
$image = array();
if ($files = $request->file('image')) {
foreach ($files as $file) {
$name = $file->getClientOriginalName();
$file->move('images', $name);
$image[] = $name;
}
}
//dd($formInput);
Image::createMany([
'product_id': //'value of id': Same for all images of this product
],[...])
Product::create(array_merge($formInput,
[
// 'product_id'=>$product->id,
// 'image' => 'what to put here',
'seller_id' => Auth::user()->id,
//Other Fields' details...
]));
return redirect()->back();
}