Laravel 5.4急切加载belongsToMany关系null绑定

Posted

技术标签:

【中文标题】Laravel 5.4急切加载belongsToMany关系null绑定【英文标题】:Laravel 5.4 Eager loading belongsToMany Relationship null Binding 【发布时间】:2017-09-09 16:45:16 【问题描述】:

我有一个现有模型可以延迟加载 belongsToMany 关系。

我的问题是,当我尝试急切加载关系时,我得到一个空结果

当我检查查询时,它显示关系查询的绑定为空。

这是我的(简化的)代码:

// Controller
public function filter(Request $request, App\Programs $program)

    $program = $program->newQuery();

    $program->select(
            'slug',
            'title',
            'season'
    );

    $program->with([
        'sports'
    ]);
    return $program->get();


// Model
class Programs extends Model

    public function sports()
        return $this->belongsToMany('App\Sport', 'program_sport', 'program_id', 'sport_id');
    


【问题讨论】:

【参考方案1】:

问题是您没有从数据库中获取id,因此 Eloquent 无法获取相关模型。而不是:

 $program->select(
            'slug',
            'title',
            'season'
    );

你应该使用:

 $program->select(
            'id',
            'slug',
            'title',
            'season'
    );

请注意,您可以使用更简单的语法(并且不要像这样在控制器中注入模型):

return Program::select('id','slug', 'title', 'season')->with('sports')->get();

我也不知道你为什么在这种情况下使用路由模型绑定

【讨论】:

不要奇怪,但如果可以的话,我会吻你。我就这么放心了。 XD 另外,这回答了我的问题。

以上是关于Laravel 5.4急切加载belongsToMany关系null绑定的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 急切加载限制

Laravel Eloquent 中的急切加载

Laravel 动态关系 - 在急切加载时访问模型属性

Laravel 急切加载与添加子句的关系?

Laravel 急切加载特定列错误

Laravel 5.1通过急切加载返回连接字段