【发布时间】:2019-01-24 11:42:17
【问题描述】:
每个用户可以关注多个类别(多对多), 每个类别都有很多帖子(一对多),
我想获取用户关注的所有帖子并按日期对其进行排序。
有没有办法用 Eloquent 做到这一点?
【问题讨论】:
-
你能提供一些代码吗?
标签: laravel laravel-5 orm eloquent
每个用户可以关注多个类别(多对多), 每个类别都有很多帖子(一对多),
我想获取用户关注的所有帖子并按日期对其进行排序。
有没有办法用 Eloquent 做到这一点?
【问题讨论】:
标签: laravel laravel-5 orm eloquent
可能有不同的方式,但我可能会通过两个查询来做到这一点:
// Get the IDs of the categories
$categoryIds = $user->categories()->pluck('id');
// Pull the posts with those category IDs
$posts = Post::whereIn('category_id', $categoryIds)->get();
【讨论】: