gpt4 book ai didi

php - 如何在不同类型之间的 ONE 模型中设置一对多关系

转载 作者:行者123 更新时间:2023-12-05 05:47:32 25 4
gpt4 key购买 nike

我有一个名为categories 的表,这是它的结构:

id              bigint(20)      AUTO_INCREMENT  
name varchar(255)
description varchar(255)
short_name varchar(255)
picture varchar(255)
parent_category int(11)
category_type tinyint(4)

因此每个类别都有一个 category_type,它可以是以下值之一:

1:主要类别

2:高级类别

3:二级类别

4:二级子类别

现在我想在这些类别之间设置一对多关系。

例如:一个主类有多个上级类,一个上级类与一个主类相关。

这也适用于其他人。

但是因为我只有一个模型,它是Category,我不知道如何应用这种关系,所以如果你知道,请帮助我......

模型Category.php:

class Category extends Model
{
use HasFactory;
protected $fillable = ['name','short_name','description','picture','category_type','parent_category'];

}

最佳答案

在Category模型中可以写出如下关系:

public function parentCategory()
{
return $this->belongsTo(Category::class, 'parent_category', 'id');
}

public function childCategories()
{
return $this->hasMany(Category::class, 'parent_category', 'id');
}

您稍后可以像这样获取关系:

$cat = Category::where('category_type', 'main')->first();
$cat->childCategories; //all the categories where the main category has been set as parent category

或者

  $cat2 = Category::where('category_type', 'secondary')->first();
$cat2->parentCategory; //the category object which has been marked as parent for that specific secondary category

如果你想在关系上过滤每个类别类型,你也可以这样做:

public function superiorChildCategories()
{
return $this->hasMany(Category::class,'parent_category','id')->where('category_type','superior');
}

使用:

$cat3 = Category::where('category_type', 'main')->first();
$cat3->superiorChildCategories; //all the superior type categories where the main category has been set as parent category, will return null if there is no superior type child categories

不要忘记在数据库中设置实际的父类型关系,所以 parent_category 列应该是父类别的 id。

它也经过测试,并按预期工作。

关于php - 如何在不同类型之间的 ONE 模型中设置一对多关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70998648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com