0

所以我有 2 个表:项目和产品。一个项目hasMany产品和一个产品belongsTo一个项目。

产品迁移:

Schema::create('products', function (Blueprint $table) {
    $table->bigIncrements('id');
    $table->string('hashed_id')->nullable()->unique();
    $table->bigInteger('item_id')->unsigned();
    $table->bigInteger('user_id')->unsigned();
    $table->integer('state')->default(1);
    $table->decimal('price');
    $table->string('slug')->nullable()->unique();
    $table->timestamps();

    $table->foreign('item_id')->references('id')->on('items')->onDelete('cascade');
    $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
});

对于 hashed_id,我使用以下包:https ://packagist.org/packages/hashids/hashids创建一个散列 id 以显示在 url 中。

产品.php

public static function boot()
{
    parent::boot();

    static::created(function ($product) {
        $productId = $product->id;
        $hashids = new Hashids("", 10, 'abcdefghijklmnopqrstuvwxyz1234567890');
        $hashedId = $hashids->encode($productId++);

        $slug = Str::slug($product->item->slug . '-' . $hashedId);

        $product->hashed_id = $hashedId;
        $product->slug = $slug;
    });

}

ProductsController.php

public function createSelfProduct(Request $request)
{
    $product = auth()->user()->products()->create([
        'item_id' => $request->item_id,
        'user_id' => auth()->user()->id,
        'price' => $request->price,
    ]);

    // create the product and show seller info
    return new ProductResource($product->load('user'));
}

我想要做的是,当用户创建新产品时,它应该slug从项目模型中获取,将其放在$hashedId后面并将其保存到数据库中。现在,当我通过 Postman 发出帖子请求时,我得到了想要的结果,hashed_id并被slug保存了下来。但是当我检查数据库时,两者hashed_id都是slugNULL。只有item_id,user_idprice被保存。我做错了什么,我该如何解决?

4

2 回答 2

2

Laravel 有一种使用观察者处理这个问题的便捷方式

https://laravel.com/docs/5.8/eloquent#observers

php artisan make:observer ProductObserver

然后在 Observers/ProductObserver.php

public function created(Product $product) {

    $product = ''; // whatver you need to do here. $product is an instance of Product model

    // Dont forget to save your model after modifying
    $product->save();

}
于 2019-11-16T15:39:10.853 回答
2

created事件意味着模型已经创建。这不是在保存之前,而是在保存之后。如果您此时更改任何内容,则需要再次保存记录。

简单地说:您在更改模型实例后忘记调用save模型实例来保存更改。

于 2019-11-16T20:56:38.230 回答