laravel 在文章列表中附带上前10条评论?

  1. with的话无法limit数量的
  2. take也一样,查到的都是空
  3. 你们是怎么解决的啊?
  4. 也可以是只查询各个文章的前10条评论?
米琪卡哇伊
浏览 743回答 2
2回答

UYOU

Post::find($id)->with(['comments'=>function($query){ $query->orderBy('created_at','desc')->limit(10); }]) ------------ 分割线 ---------- 如果 with 里的 limit 和 take 不行的话,那么就比较麻烦了,还有其他一些折中的方法。 方法1: 在 blade 中要显示评论数据的地方 post->comments()->limit(10) 问题:如果取了 20 条 Post 数据,就会有 20 条取 comments 的 sql 语句,会造成执行的 sql 语句过多。 不是非常可取 方法2: 直接通过 with 把 Post 的所有 comments 数据都取出来,在 blade 中 post->comments->take(10) 这里的 take 是 Laravel Collection 的方法。 两种方法都可以去构造其他查询条件,过滤自己想要的数据。 方法3: $posts = Post::paginate(15); $postIds = $posts->pluck('id')->all(); $query = Comment::whereIn('post_id',$postIds)->select(DB::raw('*,@post := NULL ,@rank := 0'))->orderBy('post_id'); $query = DB::table( DB::raw("({$query->toSql()}) as b") ) ->mergeBindings($sub->getQuery()) ->select(DB::raw('b.*,IF ( @post = b.post_id ,@rank :=@rank + 1 ,@rank := 1 ) AS rank, @post := b.post_id')); $commentIds = DB::table( DB::raw("({$query->toSql()}) as c") ) ->mergeBindings($sub2) ->where('rank','<',11)->select('c.id')->pluck('id')->toArray(); $comments = Comment::whereIn('id',$commentIds)->get(); $posts = $posts->each(function ($item, $key) use ($comments) { $item->comments = $comments->where('post_id',$item->id); }); 亲测有效,会产生三条sql select * from `posts` limit 15 offset 0; select `c`.`id` from (select b.*,IF ( @post = b.post_id ,@rank :=@rank + 1 ,@rank := 1 ) AS rank, @post := b.post_id from (select *,@post := NULL ,@rank := 0 from `comments` where `post_id` in ('2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16') order by `id` asc) as b) as c where `rank` < '11'; select * from `comments` where `id` in ('180', '589', '590', '3736'); 其实该问题的难点是在于:在文章列表时候,要把文章的相关评论取N条,之前 with 的 take 不行,是因为 mysql 的语法不像 SQL Server 和 Order 那样支持 over partition by 分组。 所以方法3实现的是类似 over partition by 这样的分组功能。comments 表根据post_id进行分组,然后计数获得 rank,然后取 rank < 11 的数据,也就是前 10 条数据。

慕容森

刚试了一下,在单数据的情况下是可以,在列表里面貌似是不行的,这个 with 函数的加载只是优化了一下第二步的 SQL 语句。就算知道了你第一句 SQL 获取的 ID,如果要每条数据都取前十的关联数据,我认为一条简单的 SQL 语句完成不了,因为不管你限制多条,都无法保证平均分配到每一条主数据上。
打开App,查看更多内容
随时随地看视频慕课网APP