前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Laravel关联模型中过滤结果为空的结果集(has和with区别)

Laravel关联模型中过滤结果为空的结果集(has和with区别)

作者头像
砸漏
发布2020-10-21 09:44:18
3.3K0
发布2020-10-21 09:44:18
举报
文章被收录于专栏:恩蓝脚本

首先看代码:

代码语言:javascript
复制
$userCoupons = UserCoupons::with(['coupon' =  function($query) use($groupId){
 return $query- select('id', 'group_id', 'cover', 'group_number', 'group_cover')- where([
   'group_id' =  $groupId,
 ]);
}])
// 更多查询省略...

数据结构是三张表用户优惠券表(user_coupons)、优惠券表(coupons),商家表(corps),组优惠券表(group_coupons) (为了方便查看,后两项已去除)

这里我本意想用模型关联查出用户优惠券中属于给定组gourpId的所有数据(如果为空该条数据就不返回)。

但有些结果不是我想要的:

代码语言:javascript
复制
array(20) {
 ["id"]= 
 int(6)
 ["user_id"]= 
 int(1)
 ["corp_id"]= 
 int(1)
 ["coupon_id"]= 
 int(4)
 ["obtain_time"]= 
 int(1539739569)
 ["receive_time"]= 
 int(1539739569)
 ["status"]= 
 int(1)
 ["expires_time"]= 
 int(1540603569)
 ["is_selling"]= 
 int(0)
 ["from_id"]= 
 int(0)
 ["sell_type"]= 
 int(0)
 ["sell_time"]= 
 int(0)
 ["sell_user_id"]= 
 int(0)
 ["is_compose"]= 
 int(0)
 ["group_cover"]= 
 string(0) ""
 ["is_delete"]= 
 int(0)
 ["score"]= 
 int(100)
 ["created_at"]= 
 NULL
 ["updated_at"]= 
 NULL
 ["coupon"]= 
 NULL // 注意返回了coupons为空的数据
}

记录中有的coupon有记录,有的为空。想想也是,with只是用sql的in()实现的所谓预加载。无论怎样主user_coupons的数据都是会列出的。

它会有两条sql查询,第一条查主数据,第二条查关联,这里第二条sql如下:

代码语言:javascript
复制
select `id`, `group_id`, `cover`, `group_number`, `group_cover` from `youquan_coupons` where `youquan_coupons`.`id` in (1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14) and (`group_id` = 1) and `youquan_coupons`.`deleted_at` is null

如果第二条为空,主记录的关联字段就是NULL。

后来看到了Laravel关联的模型的has()方法,has()是基于存在的关联查询,下面我们用whereHas()(一样作用,只是更高级,方便写条件)

这里我们思想是把判断有没有优惠券数据也放在第一次查询逻辑中,所以才能实现筛选空记录。

加上whereHas()后的代码如下

代码语言:javascript
复制
$userCoupons = UserCoupons::whereHas('coupon', function($query) use($groupId){
  return $query- select('id', 'group_id', 'cover', 'group_number', 'group_cover')- where([
   'group_id' =  $groupId,
  ]);
 })- with(['coupon' =  function($query) use($groupId){
  return $query- select('id', 'group_id', 'cover', 'group_number', 'group_cover');
 }])-  // ...

看下最终的SQL:

代码语言:javascript
复制
select * from `youquan_user_coupons` where exists (select `id`, `group_id`, `cover`, `group_number`, `group_cover` from `youquan_coupons` where `youquan_user_coupons`.`coupon_id` = `youquan_coupons`.`id` and (`group_ids` = 1) and `youquan_coupons`.`deleted_at` is null) and (`status` = 1 and `user_id` = 1)

这里实际上是用exists()筛选存在的记录。然后走下一步的with()查询,因为此时都筛选一遍了,所以with可以去掉条件。

显然区分这两个的作用很重要,尤其是在列表中,不用特意去筛选为空的数据,而且好做分页。

总结

以上所述是小编给大家介绍的Laravel关联模型中过滤结果为空的结果集(has和with区别),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对ZaLou.Cn网站的支持!

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档