Laravel 9.x中的常规错误:字段'id'在没有默认值的情况下
P粉714780768
P粉714780768 2024-04-06 11:12:54
0
1
433

我在我的应用程序中使用 UUID,并且我已经实现了该特征,如在线所示,如下所示:

trait Uuid
{
    protected static function boot(): void
    {
        parent::boot();

        static::creating(function (Model $model) {
            if (!$model->getKey()) {
                $model->{$model->getKeyName()} = (string) Str::uuid();
            }
        });
    }

    public function getIncrementing(): bool
    {
        return false;
    }

    public function getKeyType(): string
    {
        return 'string';
    }
}

回想起来,这几乎适用于任何地方:我正在尝试在我的产品上创建一个数据透视表,如下所示:

public function categories(): BelongsToMany
{
    return $this->belongsToMany(
        Category::class,
        ProductCategory::class,
        'product_id',
        'category_id'
    );
}

迁移如下所示:

public function up(): void
{
    Schema::create('product_categories', function (Blueprint $table) {
        $table->uuid('id')->primary();
        $table->foreignUuid('product_id')->index();
        $table->foreignUuid('category_id')->index();
        $table->timestamps();
    });
}

但是,每当我在播种时执行以下操作:

Product::first()->categories()->sync(Categories::all()->pluck('id'));

我看到这个错误:

PDOException::(“SQLSTATE[HY000]:一般错误:1364 字段“id”没有默认值”)

CategoryProductCategory 都使用 Uuidd 特征,我不知道如何使其工作。

感谢任何帮助。

P粉714780768
P粉714780768

全部回复(1)
P粉731977554

作为可能的解决方案之一,您可以使用自己的模型和数据透视表的特征。

更多: https://laravel.com/docs/ 9.x/eloquent-relationships#defining-custom-intermediate-table-models

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!