Laravel 5.0:从嵌套关系中查询和显示子对象

时间:2015-03-05 00:58:57

标签: php laravel eloquent foreign-key-relationship laravel-5

我正在尝试在我的刀片视图中访问嵌套数据,但我尝试的所有内容似乎都会导致一个错误或另一个错误。我猜它与嵌套的相关数据是一个集合有关,但我想如果我循环通过这我可以访问我需要的东西。代码如下。

模型选项组

class OptionGroup extends Model {

protected $table = 'option_groups';

/**
 * @return \Illuminate\Database\Eloquent\Relations\HasMany
 */
public function option_choices()
{
    return $this->hasMany('App\OptionChoice');
}

}

模型OptionChoice

class OptionChoice extends Model {

protected $table = 'option_choices';

/**
 * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
 */
public function option_group()
{
    return $this->belongsTo('App\OptionGroup');
}

}

模型ModuleQuestion

class ModuleFftQuestion extends Model {

protected $table = 'module_questions';

/**
 * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
 */
public function option_group()
{
    return $this->belongsTo('App\OptionGroup');
}
}

模块控制器

....      
$questions = ModuleQuestion::with('option_group.option_choices')
        ->where('enabled', '=', 1)
        ->get()
        ->sortBy('id', true);

return view('modules.index', compact('questions'));

查看模块/ index.blade.php

....                    
@foreach($questions as $question)
  <section>
    <ul>
       @foreach($question->option_group->option_choices as $choice)
          <li>
             echo something here maybe  {!! $choice->name !!}
          </li>
       @endforeach
     /ul>
   </section>
@endforeach

我认为我可以在上面的视图中执行此操作,但这会引发错误:

ErrorException in 35dc55260ec747349284c8d119dae7bf line 17:
Trying to get property of non-object (View:     /www/resources/views/modules/index.blade.php)

如果我注释掉嵌套的foreach,我可以在laravel debugbar中看到如下查询:

select * from `module_questions` where `enabled` = '1'
select * from `option_groups` where `option_groups`.`id` in ('2', '0', '3', '4', '5', '1')
select * from `option_choices` where `option_choices`.`option_group_id` in ('1', '2', '3', '4', '5')

我会说我的关系如下:

- An option_group has many option_choices
- An option_choice belongs to one option_group
- A module_question belongs to one option_group

我显然遗漏了一些东西,还有一些东西还没有完全点击给我,我是Laravel的新手并且一直在学习,但这让我很难过。

这是我试图访问视图中的option_choice数据的方式,还是有更好的方法来使用eloquent进行查询,这样可以更轻松地访问视图中的option_choice数据。

任何帮助都将受到极大的欢迎。

此致 中号

1 个答案:

答案 0 :(得分:2)

可能对于您的一个问题,option_group中没有任何内容,因此您无法访问option_choices。你应该这样添加一个额外的支票:

@foreach($questions as $question)
  <section>
    <ul>
       @if ($question->option_group)
           @foreach($question->option_group->option_choices as $choice)
              <li>
                 echo something here maybe  {!! $choice->name !!}
             </li>
           @endforeach
      @endif
     </ul>
   </section>
@endforeach