gpt4 book ai didi

php - laravel 为帖子制作类别(规范化表)

转载 作者:行者123 更新时间:2023-12-02 15:30:06 25 4
gpt4 key购买 nike

Laravel 规范化数据库中的关系。

所以我有包含作业的作业表。以及包含类别的类别表。

工作可以有多个类别。

有没有一种正常化关系的方法?

Schema::create('jobs', function($table)
{
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->string('slug');
$table->string('title');
$table->string('excerpt')->nullable();
$table->text('content');
$table->integer('delivery');
$table->integer('price');
$table->unique(array('user_id', 'slug'));
$table->timestamps();
});

Schema::create('categories', function(Blueprint $table)
{
// These columns are needed for Baum's Nested Set implementation to work.
// Column names may be changed, but they *must* all exist and be modified
// in the model.
// Take a look at the model scaffold comments for details.
// We add indexes on parent_id, lft, rgt columns by default.
$table->increments('id');
$table->integer('parent_id')->nullable()->index();
$table->integer('lft')->nullable()->index();
$table->integer('rgt')->nullable()->index();
$table->integer('depth')->nullable();

// Add additional columns here (f.ex: name, slug, path, etc.)
$table->string('name')->unique();
$table->string('slug')->unique();
$table->string('description')->nullable();
});

我的第一直觉是创建一个保存关系的中间表:

Schema::create('jobs_categories', function($table)
{
$table->increments('id');
$table->integer('job_id')->unsigned();
$table->integer('category_id')->unsigned();
$table->unique(array('job_id', 'category_id'));
});

但我不确定如何继续,如果我想获得所有 $jobs 的类别,我该怎么办?

如果我想获得 $job 类别,我该怎么做?

hasOne 和 hasMany 更适合这个吗?

最佳答案

您所描述的是多对多关系。是的,需要像 jobs_categories 这样的数据透视表。以下是遵循 Laravel 命名约定并利用关系的方法:

数据透视表

jobs_categories 很好,但 Laravel 喜欢 category_job (单数和字母顺序)(这样你就不必在你的关系中指定表名)

Schema::create('category_job', function($table){
$table->increments('id');
$table->integer('job_id')->unsigned();
$table->integer('category_id')->unsigned();
$table->unique(array('job_id', 'category_id'));

// foreign key constraints are optional (but pretty useful, especially with cascade delete
$table->foreign('job_id')->references('id')->on('jobs')->onDelete('cascade');
$table->foreign('category_id')->references('id')->on('categories')->onDelete('cascade');
});

关系

工作模型

public function categories(){
return $this->belongsToMany('Category');
}

类别模型

public function jobs(){
return $this->belongsToMany('Job');
}

用法

急切加载类别的工作

$jobs = Job::with('categories')->get();

访问工作类别

$job = Job::find(1);
$categories = $job->categories;

Visit the Laravel docs for more information on Eloquent relationships

关于php - laravel 为帖子制作类别(规范化表),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27991566/

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