web-dev-qa-db-ja.com

Laravel 2つの主キーを持つモデルの更新

2つの主キーを持つモデルを更新しようとしています。

namespace App;

use Illuminate\Database\Eloquent\Model;

class Inventory extends Model
{
    /**
     * The table associated with the model.
     */
    protected $table = 'inventories';

    /**
     * Indicates model primary keys.
     */
    protected $primaryKey = ['user_id', 'stock_id'];
...

移行

Schema::create('inventories', function (Blueprint $table) {
    $table->integer('user_id')->unsigned();
    $table->integer('stock_id')->unsigned();
    $table->bigInteger('quantity');

    $table->primary(['user_id', 'stock_id']);

    $table->foreign('user_id')->references('id')->on('users')
        ->onUpdate('restrict')
        ->onDelete('cascade');
    $table->foreign('stock_id')->references('id')->on('stocks')
        ->onUpdate('restrict')
        ->onDelete('cascade');
});

これは、インベントリモデルを更新する必要があるコードですが、更新しません。

$inventory = Inventory::where('user_id', $user->id)->where('stock_id', $order->stock->id)->first();
$inventory->quantity += $order->quantity;
$inventory->save();

私はこのエラーを受け取ります:

Illegal offset type

また、updateOrCreate()メソッドを使用しようとしました。動作しません(同じエラーが表示されます)。

2つの主キーを持つモデルをどのように更新する必要があるか、誰にもわかりますか?

25
Ugnius Malūkas

私はこの問題に何度か遭遇しました。一部のプロパティをオーバーライドする必要があります。

protected $primaryKey = ['user_id', 'stock_id'];
public $incrementing = false;

およびメソッド( credit ):

/**
 * Set the keys for a save update query.
 *
 * @param  \Illuminate\Database\Eloquent\Builder  $query
 * @return \Illuminate\Database\Eloquent\Builder
 */
protected function setKeysForSaveQuery(Builder $query)
{
    $keys = $this->getKeyName();
    if(!is_array($keys)){
        return parent::setKeysForSaveQuery($query);
    }

    foreach($keys as $keyName){
        $query->where($keyName, '=', $this->getKeyForSaveQuery($keyName));
    }

    return $query;
}

/**
 * Get the primary key value for a save query.
 *
 * @param mixed $keyName
 * @return mixed
 */
protected function getKeyForSaveQuery($keyName = null)
{
    if(is_null($keyName)){
        $keyName = $this->getKeyName();
    }

    if (isset($this->original[$keyName])) {
        return $this->original[$keyName];
    }

    return $this->getAttribute($keyName);
}

このコードはEloquent Builderクラスを参照する必要があることを忘れないでください

use Illuminate\Database\Eloquent\Builder;

これらのメソッドをHasCompositePrimaryKey Traitに配置することをお勧めします。そうすることで、必要なモデルでuseだけを使用できます。

68
alepeino