简体   繁体   English

使用 oneToMany 关系将动态字段数据数组保存到 DB

[英]Saving array of dynamic fields data to DB using oneToMany relationship

I have been trying to save the data coming from the dynamically generated fields in the form of an array.我一直在尝试以数组的形式保存来自动态生成字段的数据。 I have a oneToMany relationship for the customer table.我有一个客户表的一对多关系。

在此处输入图片说明

I have tried to loop through each field but I am unable to achieve it, please correct me if I am wrong.我试图遍历每个字段,但无法实现,如果我错了,请纠正我。

public function store(Request $request)
{
    $res = $request->all();
    $res['address'] = implode(' ', array_values($request->address));
    $customer = Customer::create($res);
    if ($res) {
        $customerData = [];
        foreach ($request->department_name as $key => $n) {
            $customerData = array(
                'department_name' => $request->department_name[$key],
                'person_name' => $request->person_name[$key],
                'person_number' => $request->person_number[$key],
                'person_email' => $request->person_email[$key],
                'notification_flag' => !isset($request->notification_flag[$key]) ? 0 : $request->notification_flag[$key] === "on" ? 1 : 0,
                'custinvoice_noti' => !isset($request->outstanding[$key]) ? 0 : $request->outstanding[$key] === "on" ? 1 : 0,
                'invoice_noti' => !isset($request->invoice[$key]) ? 0 : $request->invoice[$key] === "on" ? 1 : 0,
            );

            $deptModel[] = new Department($customerData);
            $customer->department()->saveMany($deptModel);
        }
    }
    return redirect('admin/customers');
}

Customer model and Department model have the following relationship.客户模型和部门模型具有以下关系。

class Customer extends Model
{
protected $fillable = ['owner_name', 'address', 'country', 'state', 'city', 'pincode', 'number', 'correspondance_check'];

public function department()
{
    return $this->hasMany('App\Department');
}
}

Department Model.部门模式。

class Department extends Model
{
protected $fillable = ['customer_id', 'department_name', 'person_name', 'person_number', 'person_email', 'notification_flag', 'notification_type'];

public function customer()
{
    return $this->belongsTo('App\Customer');
}
}

在此处输入图片说明

Your code look so messy. 你的代码看起来很混乱。 You should try to use insert oneToMany by laravel eloquent. 你应该试着通过laravel eloquent使用insert oneToMany。 Follow this issue: Laravel save one to many relationship . 请遵循以下问题: Laravel保存一对多的关系 Anyways, you should use formrequest to reuse your code and more standard. 无论如何,您应该使用formrequest来重用您的代码和更多标准。

public function store(Request $request) { $customer = new Customer(); 公共功能商店(Request $ request){$ customer = new Customer();

    $customer->owner_name = $request['owner_name'];
    $customer->country = $request['country'];
    $customer->state = $request['state'];
    $customer->city = $request['city'];
    $customer->pincode = $request['pincode'];
    $customer->number = $request['number'];
    $customer->correspondance_check = $request['correspondance_check'];
    $res = $customer->save();
    $cus = Customer::where(['id'=> $res->id])->firstOrFail();
    $dep = new Department();
    $dep->customer()->associate($cus);
    $dep->save();

    return redirect('admin/customers');
    // return response()->json($customerData);
}

Customer model and  Department model have the following relationship.

class Customer extends Model
{

protected $fillable = ['owner_name', 'address', 'country', 'state', 'city', 'pincode', 'number', 'correspondance_check'];

public function department()
{
    return $this->hasMany('App\Department');
}

}

//Department Model.

class Department extends Model
{
protected $fillable = ['customer_id', 'department_name', 'person_name', 'person_number', 'person_email', 'notification_flag', 'notification_type'];

public function customer()
{
    return $this->belongsTo('App\Customer');
}
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM