我正在尝试更新数据透视表中的值。这是我的方法:
public function updateStatus(Event $event)
{
$this->authorize('updateStatus', $event);
$newStatus = Input::get('status');
$actualPivot = $event->guests()->where('user_id', Auth::id())->first()->pivot;
$id = $actualPivot['id'];
$status = $actualPivot['status'];
if ($newStatus != $status)
{
dd($event->guests()->updateExistingPivot($id, ['status' => $newStatus]));
}
return back();
}
我已经检查过HeidiSQL,该行没有更新它应该如何。我也尝试了this solution,但它没有更新行,而是创建了一个新行。这个方法有dd()
:
array:3 [▼
"attached" => array:1 [▼
0 => 1
]
"detached" => []
"updated" => []
]
这是我在guests()
模型中定义的Event
关系:
public function guests()
{
return $this->belongsToMany('App\User')
->using('App\Invitation')
->withPivot('id', 'status')
->withTimestamps();
}
我不知道为什么updateExistingPivot()
方法不起作用。我希望你能提供帮助。
答案 0 :(得分:3)
您必须使用guest_id
或App\Invitation
外键的名称而不是您的数据透视ID才能更新现有记录,否则您没有当前事件的关系与您的透视ID相匹配。
$id = $actualPivot['guest_id']; // change guest_id for your foreig key name of \App\Invitation
$status = $actualPivot['status'];
if ($newStatus != $status)
{
dd($event->guests()->updateExistingPivot($id, ['status' => $newStatus]));
}