如何通过拉拉维尔雄辩的模型连接三张桌子

2022-08-30 07:39:06

我有三张桌子

文章表格

 id
 title
 body
 categories_id
 user_id

类别表

  id
  category_name

用户表

 id
 user_name
 user_type

我想用它们的类别名称而不是category_id和user_name而不是user_id显示文章,我尝试像这些查询一样这是工作!

$articles =DB::table('articles')
                ->join('categories', 'articles.id', '=', 'categories.id')
                ->join('users', 'users.id', '=', 'articles.user_id')
                ->select('articles.id','articles.title','articles.body','users.username', 'category.name')
                ->get();

但我想用雄辩的方式去做。拜托,我该怎么办?


答案 1

使用Eloquent,检索关系数据非常容易。查看以下示例和您在 Laravel 5 中的场景。

我们有三种型号:

  1. 文章(属于用户和类别)

  2. 类别(有很多文章)

  3. 用户(有很多文章)


  1. 文章.php
    <?php
    namespace App\Models;
    use Eloquent;
    
    class Article extends Eloquent {
        protected $table = 'articles';
    
        public function user() {
            return $this->belongsTo('App\Models\User');
        }
    
        public function category() {
            return $this->belongsTo('App\Models\Category');
        }
    }
  1. 类别.php
    <?php
    namespace App\Models;
    
    use Eloquent;
    
    class Category extends Eloquent {
        protected $table = "categories";
    
        public function articles() {
            return $this->hasMany('App\Models\Article');
        }
    }
  1. 用户.php
    <?php
    namespace App\Models;
    use Eloquent;
    
    class User extends Eloquent {
        protected $table = 'users';
    
        public function articles() {
            return $this->hasMany('App\Models\Article');
        }
    }

您需要了解数据库中的关系和模型中的设置。用户有很多文章。该类别有许多文章。文章属于用户和类别。在Laravel中设置关系后,检索相关信息变得很容易。

例如,如果要使用用户和类别检索文章,则需要编写:

$article = \App\Models\Article::with(['user','category'])->first();

你可以这样使用:

//retrieve user name 
$article->user->user_name  

//retrieve category name 
$article->category->category_name

在另一种情况下,您可能需要检索某个类别中的所有文章或检索特定用户的所有文章。你可以这样写:

$categories = \App\Models\Category::with('articles')->get();
$users = \App\Models\Category::with('users')->get();

您可以在 http://laravel.com/docs/5.0/eloquent 了解更多信息


答案 2

尝试:

$articles = DB::table('articles')
            ->select('articles.id as articles_id', ..... )
            ->join('categories', 'articles.categories_id', '=', 'categories.id')
            ->join('users', 'articles.user_id', '=', 'user.id')

            ->get();

推荐