我有一个带有两个主键的模型,并且我已经覆盖了setKeysForSaveQuery()。 $ object-> save()返回true,我尝试对已更新的数据进行dd,它表明已被更新,但是刷新数据库后,它没有被更新。
npm init
这是我在控制器中更新模型的方式
class Test extends Model
{
protected $primaryKey = ['number','type'];
public $incrementing = false;
protected $fillable = [
'number','type'
];
protected function setKeysForSaveQuery(Builder $query)
{
$query
->where('number', '=', $this->getAttribute('number'))
->where('type', '=', $this->getAttribute('type'));
return $query;
}
}
答案 0 :(得分:0)
您正在更新用于查找记录的键,因此它现在将在查询中使用此新键,它不是数据库中的当前键。您需要使用原始键才能找到记录,然后可以使用新值更新记录。
您需要执行以下操作:
protected function setKeysForSaveQuery(Builder $query)
{
$number = $this->original['number'] ?? $this->getAttribute('number');
$type = $this->original['type'] ?? $this->getAttribute('type');
$query->where('number', '=', $number)
->where('type', '=', $type);
return $query;
}
如果这些键存在,则使用原始值;如果不存在,则使用当前属性值。