当前位置:Gxlcms > PHP教程 > 关于laravel跨表查询问题

关于laravel跨表查询问题

时间:2021-07-01 10:21:17 帮助过:27人阅读

我有三个表
文章表

关系表

分类表

其中关系表当中的object_id对应文章表的id
term_taxonomy_id对应分类表的term_id

请我我如何使用eloquent通过多对多的方式获取文章表和分类表并且一同返回?

回复内容:

我有三个表
文章表

关系表

分类表

其中关系表当中的object_id对应文章表的id
term_taxonomy_id对应分类表的term_id

请我我如何使用eloquent通过多对多的方式获取文章表和分类表并且一同返回?

class Article extends Model{
   public function category()
    {
        return $this->belongsToMany('App\Categorys', 'relations', 'term_taxonomy_id', 'object_id');
    }
}

$res = Article::with('category')->where('id', $id)->get();

参考:https://segmentfault.com/q/10...,使用with

RTFMhttps://laravel-china.org/doc...

人气教程排行