douhuangjian9627 2017-12-05 21:22
浏览 40
已采纳

如何通过急切加载仅访问相关模型

I have these models in my project:

class User {

    public function favorites()
    {
        return $this->hasMany('App\Favorite');
    }

}

-

class Product {

    public function user()
    {
        return $this->belongsTo('App\User');
    }

}

-

class Favorite {

    public function user()
    {
        return $this->belongsTo('App\User');
    }

    public function product()
    {
        return $this->belongsTo('App\Product');
    }

}


When I try to get the user's favorites i will do like this:-

$user = User::find(1);
return $user->favorites;

Or with the products in his favorites:-

return $user->favorites->load('product');

But It returns the results from both (products and favorites).

How do I get the results only from Product model through the Favorite?

Like I want to retrieve only the products that the user added to his favorites?

I already tried to make this in the User class and it doesn't work:-

public function favproducts()
{
    return this->hasManyThrough('App\Product', 'App\Favorite');
}


Thank you in advance.

展开全部

  • 写回答

3条回答 默认 最新

  • drl47263 2017-12-06 01:09
    关注

    This seems like this could be a belongsToMany between User and Product to make a 'favorites', as the pivot table.

    Your current setup is missing the inverse relationship from Product to Favorite, so you can't use the relationship in that direction. Which is the direction I would use to get the result you want.

    If you had the relationship setup, you could potentially do this to just get the Products for a User's favorites.

    Product::whereHas('favorites.user', function ($q) use ($user_id) {
        $q->where('id', $user_id);
    })->get();
    

    Get all products that have a favorite that is for user with id == $user_id.

    If this was setup for a belongsToMany you could potentially just do this instead:

    User::find($id)->favorites;
    

    With what you currently have, you could "fetch" the children records out of the result you have on the PHP side.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部