dougui4325 2015-11-12 09:18
浏览 42
已采纳

first()和take()在Eager Load laravel中无法正常工作

I have a Post Model that have a hasMany relation to post_pics and belongsToMany relation to Category Model.

I want to fetch All Posts and All their Categories but First post_pics of each Post.

For that I write this Eager Load Constraints :

Post::with([
                'post_pics'  => function ($query) {
                    $query->select(['pic_id', 'pic_name', 'post_id'])->first()->get();
                },
                'categories' => function ($query) {
                    $query->select(['categories.cat_id', 'name']);
                }
            ])
                ->take(12)->orderBy('created_at', 'desc')
                ->get(['post_id', 'post_title', 'post_alias', 'post_content', 'comments_count', 'created_at']);

        return $latestPosts;

When I remove first() method after select() method all things works and returns all pictures of each Post but when I use first() method, only returns first picture of Models that have more than one picture.

I try to take(1) Constraints but it does not work too.

What is Problem and How Can I do that?

  • 写回答

1条回答 默认 最新

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看