如何通过Laravel 5.2中的多态关系检索孙子孙女?

时间:2016-09-23 08:51:48

标签: php laravel eloquent laravel-5.2 laravel-query-builder

我的数据库设计如下图所示。

课程有很多模块 模块变形为Scorm和其他2个表(本例中未使用) 变形Morph one Module并且拥有许多Scoes 我试图从我的课程模型中访问所有相关的scoes:

$course->scoes.

我正在使用Laravel 5.2,使用Eloquent关系,我知道这是不可能的。经过几次测试后,使用查询构建器我实际上可以返回正确的数据,但是,它们作为Module :: class的实例而不是Scorm和Sco返回。

这是我现在的代码。

谢谢,

public function modules() {
    return $this->hasMany(Module::class);
}

public function scorms(){
    return $this->modules()->where('moduleable_type','=','scorms');
}
public function scoes(){
    return $this->scorms()->select('scoes.*')
        ->join('scoes','modules.moduleable_id','=','scoes.scorm_id');
}

enter image description here

2 个答案:

答案 0 :(得分:0)

我不确定,但这可能正是你想要的。 https://laravel.com/docs/5.2/eloquent-relationships#has-many-through

答案 1 :(得分:0)

我找到了一种方法来做我想做的事情。这种方式只对db进行了2次查询,并且它位于Sco模型中。

//returns a Course Object.
$sco->course()

/**
* Get the course
* @return App\Course|null
*/
public function Course(){
   $o = $this
        ->join('scorms','scoes.scorm_id','=','scorms.id')
        ->join('modules',function($join){
            $join
                ->on('moduleable_id','=','scorms.id')
                ->where('moduleable_type','=','scorms');
        })
        ->join('courses','modules.course_id','=','courses.id')
        ->select('courses.id as course_id')
        ->first();

    if(!$o) return null;

    return Course::find($o->course_id);

}