Rumah > Artikel > pembangunan bahagian belakang > Memahami Hubungan Kendiri dalam Model Laravel: Panduan Mudah
Laravel では、接続されたデータを整理して操作するには、モデル間の関係が不可欠です。通常、User モデルと Post モデルの間など、異なるモデル 間の関係を定義します (たとえば、ユーザーは多数の投稿を持つことができます)。ただし、場合によっては、モデルがそれ自体に関連付けられる関係を作成する必要があります。これは、自己参照関係 または 自己関係 と呼ばれます。
ここで、このような関係が必要な理由を、実際の簡単な例とコード スニペットを使用して説明しましょう。
自己関係は、オブジェクトが同じ種類の別のオブジェクトに関連付けられるときに発生します。各従業員にマネージャーがいる組織を管理していると想像してください。しかし、マネージャーも従業員です!この場合、従業員を他の従業員に接続する必要があります。これは、同じモデルのインスタンス間の関係を作成することを意味します。
セルフリレーションシップは、データが同じタイプの他のデータを参照する必要がある状況で役立ちます。一般的なシナリオには次のようなものがあります。
従業員とマネージャーという一般的な例を使用して、コードに分解してみましょう。
まず、従業員のモデルが必要です。 Laravel では、テーブル構造を定義するために、移行を使用してこれを作成します。
php artisan make:model Employee -m
このコマンドは、従業員モデルとそれに対応する移行ファイルの両方を作成します。
次に、テーブル構造を定義します。ここでは、従業員の詳細の列と、従業員のマネージャー (従業員でもある) の ID を保存する列 (manager_id) が必要になります。
移行ファイル (例: 2024_09_24_000000_create_employees_table.php) で、次のような構造を定義します。
Schema::create('employees', function (Blueprint $table) { $table->id(); // Employee ID $table->string('name'); // Employee name $table->foreignId('manager_id')->nullable()->constrained('employees'); // Self-referencing $table->timestamps(); });
移行を実行してテーブルを作成します:
php artisan migrate
次に、Employee モデル自体内の関係を定義します。
Employee.php モデル ファイル内:
class Employee extends Model { protected $fillable = ['name', 'manager_id']; // An employee belongs to a manager (who is also an employee) public function manager() { return $this->belongsTo(Employee::class, 'manager_id'); } // An employee can have many subordinates (other employees) public function subordinates() { return $this->hasMany(Employee::class, 'manager_id'); } }
私たちがやったことは次のとおりです:
それでは、これらの関係を実際にどのように使用できるかを見てみましょう。
アリス (CEO)、ボブ (マネージャー)、チャーリー (ボブの直属の従業員) という 3 人の従業員がいるとします。
次のように追加できます:
// Creating Alice (CEO, no manager) $alice = Employee::create(['name' => 'Alice']); // Creating Bob, who reports to Alice $bob = Employee::create(['name' => 'Bob', 'manager_id' => $alice->id]); // Creating Charlie, who reports to Bob $charlie = Employee::create(['name' => 'Charlie', 'manager_id' => $bob->id]);
$bob = Employee::where('name', 'Bob')->first(); echo $bob->manager->name; // Outputs "Alice"
$alice = Employee::where('name', 'Alice')->first(); foreach ($alice->subordinates as $subordinate) { echo $subordinate->name; // Outputs "Bob" }
$bob = Employee::where('name', 'Bob')->first(); foreach ($bob->subordinates as $subordinate) { echo $subordinate->name; // Outputs "Charlie" }
もう 1 つの例は、カテゴリとサブカテゴリです。各カテゴリにサブカテゴリを含めることができる、自己参照のカテゴリ モデルを作成できます。
class Category extends Model { public function parentCategory() { return $this->belongsTo(Category::class, 'parent_id'); } public function subCategories() { return $this->hasMany(Category::class, 'parent_id'); } }
これにより、次のようなカテゴリがネストされたシステムをモデル化できます。
従業員の例と同様の方法で、親カテゴリとサブカテゴリをクエリできます。
In a social networking app, users might have other users as friends. You can model this with a self-relationship on the User model.
class User extends Model { public function friends() { return $this->belongsToMany(User::class, 'user_friend', 'user_id', 'friend_id'); } }
This allows each user to have a list of friends who are also users.
Self-referential relationships are a powerful feature in Laravel for situations where data is related to other data of the same type. Whether you're modeling employee-manager hierarchies, category-subcategory structures, or friendships, self-relationships allow you to handle these kinds of relationships cleanly and efficiently.
By creating relationships to the same model, you can keep your data organized and easily query hierarchical or connected information with a few simple lines of code. Whether you're building an organizational chart, a category tree, or a social network, self-relationships in Laravel provide the flexibility you need.
Atas ialah kandungan terperinci Memahami Hubungan Kendiri dalam Model Laravel: Panduan Mudah. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!