gpt4 book ai didi

php - 将值添加到数据透视表 Laravel

转载 作者:行者123 更新时间:2023-12-03 23:05:10 26 4
gpt4 key购买 nike

当我想保存对票证的 react 时,我有三个表(在 Laravel 中):

-Tickets
-Reaction
-Reaction_Tickets (pivot table)

当我想保存 react 时,我会这样做:

public function addReaction(Request $request, $slug)
{
$ticket = Ticket::whereSlug($slug)->firstOrFail();
$reaction = new reactions(array(
'user_id' => Auth::user()->id,
'content' => $request->get('content')
));

return redirect('/ticket/'.$slug)->with('Reactie is toegevoegd.');
}

但是现在它当然没有添加到数据透视表中。我无法添加它,因为我没有它的模型。这样做的正确方法是什么?

编辑:

-Tickets

public function reactions()
{
return $this->belongsToMany('App\reactions');
}

-Reactions

public function tickets()
{
return $this->hasOne('App\tickets');
}

最佳答案

根据 Laravel 文档,您需要保存 Reaction 并将其附加到 Ticket:

$reaction = new reactions(array(
'user_id' => Auth::user()->id,
'content' => $request->get('content')
));
$reaction->save(); // Now has an ID
$tickets->reactions()->attach($reaction->id);

在您的 Ticket 模型中,您需要定义关系:

class Ticket extends Model {
protected $table = "tickets";

public function reactions(){
return $this->belongsToMany("App\Reaction");
}
}

你应该在Reaction上定义逆函数:

class Reaction extends Model {
protected $table = "reactions";

public function tickets(){
return $this->belongsToMany("App\Ticket");
}
}

如果您的模型是这样设置的,那么通过数据透视表将新的 Reaction 附加到现有的 Ticket 应该不会有任何问题。

关于php - 将值添加到数据透视表 Laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33308443/

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