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

How to set a One To Many relationship in ONE model between different types

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

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'];

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

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。

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

据我所知,Laravel 关系在模型之间起作用,而不是在一个模型内起作用。我建议您使用单独的模型(和单独的表格)。

如果所有其他类别都在同一层级,并且都属于一个主类别,那么您可以为主类别创建一个模型,其他所有类别都可以有一个模型。