当前位置:首页 > CMS教程 > 其它CMS > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-10-31 20:13:50 浏览: 评论:0 

这篇文章主要介绍了Laravel关联模型中过滤结果为空的结果集(has和with区别),需要的朋友可以参考下。

首先看代码:

  1. $userCoupons = UserCoupons::with(['coupon' => function($queryuse($groupId){ 
  2.  return $query->select('id''group_id''cover''group_number''group_cover')->where([ 
  3.    'group_id' => $groupId
  4.  ]); 
  5. }]) 
  6. // 更多查询省略... 

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

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

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

  1. array(20) { 
  2.  ["id"]=> 
  3.  int(6) 
  4.  ["user_id"]=> 
  5.  int(1) 
  6.  ["corp_id"]=> 
  7.  int(1) 
  8.  ["coupon_id"]=> 
  9.  int(4) 
  10.  ["obtain_time"]=> 
  11.  int(1539739569) 
  12.  ["receive_time"]=> 
  13.  int(1539739569) 
  14.  ["status"]=> 
  15.  int(1) 
  16.  ["expires_time"]=> 
  17.  int(1540603569) 
  18.  ["is_selling"]=> 
  19.  int(0) 
  20.  ["from_id"]=> 
  21.  int(0) 
  22.  ["sell_type"]=> 
  23.  int(0) 
  24.  ["sell_time"]=> 
  25.  int(0) 
  26.  ["sell_user_id"]=> 
  27.  int(0) 
  28.  ["is_compose"]=> 
  29.  int(0) 
  30.  ["group_cover"]=> 
  31.  string(0) "" 
  32.  ["is_delete"]=> 
  33.  int(0) 
  34.  ["score"]=> 
  35.  int(100) 
  36.  ["created_at"]=> 
  37.  NULL 
  38.  ["updated_at"]=> 
  39.  NULL 
  40.  ["coupon"]=> 
  41.  NULL // 注意返回了coupons为空的数据 

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

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

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()后的代码如下

  1. $userCoupons = UserCoupons::whereHas('coupon'function($queryuse($groupId){ 
  2.   return $query->select('id''group_id''cover''group_number''group_cover')->where([ 
  3.    'group_id' => $groupId
  4.   ]); 
  5.  })->with(['coupon' => function($queryuse($groupId){ 
  6.   return $query->select('id''group_id''cover''group_number''group_cover'); 
  7.  }])-> // ... 

看下最终的SQL:

  1. 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可以去掉条件。

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

Tags: Laravel关联模型 has with

分享到:

相关文章