gpt4 book ai didi

php - Laravel/ Eloquent : hasManyThrough WHERE

转载 作者:可可西里 更新时间:2023-10-31 22:43:16 24 4
gpt4 key购买 nike

在 Eloquent 的文档中,据说我可以将所需关系的键传递给 hasManyThrough .

假设我有名为 Country、User、Post 的模型。一个 Country 模型可能有许多 Posts 通过 Users 模型。那就是说我可以简单地调用:

$this->hasManyThrough('Post', 'User', 'country_id', 'user_id');

到目前为止一切正常! 但是我怎样才能只为 ID 为 3 的用户获取这些帖子呢?

有人可以帮忙吗?

最佳答案

就是这样:

models: Country 有很多 User 有很多 Post

这允许我们像在您的问题中那样使用 hasManyThrough:

// Country model
public function posts()
{
return $this->hasManyThrough('Post', 'User', 'country_id', 'user_id');
}

你想获得这个关系的给定用户的帖子,所以:

$country = Country::first();
$country->load(['posts' => function ($q) {
$q->where('user_id', '=', 3);
}]);
// or
$country->load(['posts' => function ($q) {
$q->has('user', function ($q) {
$q->where('users.id', '=', 3);
});
})

$country->posts; // collection of posts related to user with id 3

但是 如果您改用它,它会更容易、更具可读性和更 Eloquent :(因为找id为3的用户的帖子跟国家无关)

// User model
public function posts()
{
return $this->hasMany('Post');
}

// then
$user = User::find(3);
// lazy load
$user->load('posts');
// or use dynamic property
$user->posts; // it will load the posts automatically
// or eager load
$user = User::with('posts')->find(3);

$user->posts; // collection of posts for given user

总结一下:hasManyThrough 是一种直接获取嵌套关系的方法,即。给定国家/地区的所有帖子,而不是搜索特定的 through 模型。

关于php - Laravel/ Eloquent : hasManyThrough WHERE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24388688/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com