在Laravel中从关系中选择列

时间:2018-09-16 11:12:11

标签: laravel laravel-5 eloquent polymorphic-associations

我正在尝试使用with()方法进行紧急加载,我只想从关系关系中获取选定的列,我该怎么做? 。我正在使用多态关系。

Draft::with(["user:id,username","article:id,locale","article.articleable:title"])->where([
            ["user_id",$user_id],
            ["is_suspended",1]
        ])->get();

草稿模型

public function article()
{
    return $this->belongsTo("App\Models\Article");
}

商品模型

public function drafts()
{
    return $this->hasMany("App\Models\Draft", "article_id", "id");
}

public function articleable()
{
    return $this->morphTo();
}

与Article模型具有多态关系的其他模型

public function articles()
{
    return $this->morphMany("App\Models\Article", "articleable");
}

1 个答案:

答案 0 :(得分:3)

此问题已在Laravel 5.7.6中修复:https://github.com/laravel/framework/pull/25662

要使其正常工作,还必须选择id列:

Draft::with('user:id,username', 'article:id,locale', 'article.articleable:id,title')
                                                                          ^^
    ->where([
        ['user_id', $user_id],
        ['is_suspended', 1]
    ])->get();