繁体   English   中英

Laravel:使用Eloquent ORM的N到N(mysql)关系

[英]Laravel: N to N (mysql) relation using Eloquent ORM

我有4张桌子:

// Table countries
+----+------+
| Id | Name |
+----+------+
|  1 | USA  |
|  2 | GB   |
+----+------+

// Table platforms
+----+---------+
| Id |  Name   |
+----+---------+
|  1 | Windows |
|  2 | Linux   |
+----+---------+

// Table users
+----+-------+------------+-------------+
| Id | Name  | country_id | platform_id |
+----+-------+------------+-------------+
|  1 | Admin |          1 |           1 |
|  2 | Test  |          2 |           1 |
+----+-------+------------+-------------+

// Table posts
+----+-----------+------------+-------------+---------+
| Id |   Title   | country_id | platform_id | user_id |
+----+-----------+------------+-------------+---------+
|  1 | TestPost1 |          2 |           1 | 1       |
|  2 | TestPost2 |          2 |           2 | null    |
+----+-----------+------------+-------------+---------+

数据库应该能够实现以下关系:

  • 用户(N)< - >(N)平台
  • 用户(N)< - >(N)国家
  • 用户(0..1)< - >(N)发布
  • 邮政(N)< - >(N)国家
  • 发布(N)< - >(1)平台

所以现在我尝试在Laravel Eloquent ORM文档之后实现这些关系:

  // Country.php
  public function posts()
  {
      return $this->belongsToMany('App\Post');
  }

  public function users()
  {
      return $this->belongsToMany('App\User');
  }

  // Platform.php
  public function users()
  {
      return $this->belongsToMany('App\User');
  }

  public function posts()
  {
      return $this->belongsToMany('App\Post');
  }

  // User.php
  public function posts()
    {
        return $this->hasMany('App\Post');
    }

    public function countries()
    {
        return $this->hasMany('App\Country');
    }

    public function platforms()
    {
          return $this->hasMany('App\Platform');
    }

  // Post.php
  public function countries()
  {
      return $this->hasMany('App\Country');
  }

  public function platforms()
  {
      return $this->hasMany('App\Comment');
  }

  public function user()
  {
      return $this->belongsTo('App\User', 'user_id');
  }

但现在我很困惑,因为我认为在mysql中实现N到N关系的方法是向db添加第三个表,例如:

// Table CountryUserRelations to implement User (N) <-> (N) Country
+----+------------+---------+
| Id | country_id | user_id |
+----+------------+---------+
|  1 |          1 |       1 |
|  2 |          2 |       1 |
|  3 |          1 |       2 |
|  4 |          2 |       2 |
+----+------------+---------+

但是Eloquent ORM如何处理模型中的规则? 它是否会保持N到N的关系而不必添加关系表? 或者我错过了什么或误解了雄辩的ORM关系概念?

我刚加入stackoverflow,所以我没有足够的信用评论,所以我会在这里留下一个asnwer。

首先请纠正您的关系定义。

在用户模型中:(你这里有错误)

public function countries(){
    return $this->belongsToMany(Country::class);
}

并在您的国家模型中:

public function users(){
    return $this->belongsToMany(User::class);
}

第二,你需要使用以下方法创建country_user表:

php artisan make:migration create_country_user_table

在它之后你需要完成你的表:

Schema::create('country_user', function (Blueprint $table){
    $table->increments('id');
    $table->unsignedInteger('country_id');
    $table->unsignedInteger('user_id');
    $table->foreign('country_id')->references('id')->on('countries');
    $table->foreign('user_id')->references('id')->on('users');
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM