Laravel关联模型中has和with区别

本篇文章给大家带来的内容是关于Laravel关联模型中has和with区别(详细介绍),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

首先看代码:


1

2

3

4

5

6

$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的所有数据(如果为空该条数据就不返回)。

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


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

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如下:


1

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

2

3

4

5

6

7

$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:


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

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

以上就是Laravel关联模型中has和with区别(详细介绍)的详细内容。

原文地址:https://www.cnblogs.com/it-3327/p/11792877.html

时间: 2024-11-05 21:44:51

Laravel关联模型中has和with区别的相关文章

laravel 关联模型中withDefault方法的作用

withDefault 方法为什么会存在? laravel提供了非常好用的关联模型使用,正常情况下 文章对应的添加用户是存在的,如果用户表中的数据删除,那么关联模型就会返回一个null值. 就是为了解决返回null所带来问题的. 举例说明: 在没有使用withDefault方法时候: 1 <?php 2 3 namespace App; 4 5 use Illuminate\Database\Eloquent\Model; 6 7 class PostsModel extends Model 8

ThinkPHP 关联模型中查询某条记录的父级(非查询子级)

数据表 id      cat_name      cat_pid 76     手机.数码     0 84     手机配件        76 86     蓝牙耳机        84 从属关系 : 蓝牙耳机  =>(上一级)  手机配件   =>(上一级)  手机.数码(顶级了) 关联模型 namespace Admin\Model; use Think\Model\RelationModel; class CategoryModel extends RelationModel {

关联模型中

1 protected $_link = array( 2 'User'=>array( //'User'代表1对N中的1的表名 3 'mapping_type'=>BELONGS_TO, //关联类型 4 'mapping_name'=>'user', //'user'代表1对N中的1的表名 5 'mapping_fields'=>'username', //想要获取的字段 6 'foreign_key'=>'uid', //'uid'代表1对N中的N表中的外键名 7 'a

Laravel关联模型

1.多对多关联.如收藏.用户表users,产品表products,收藏中间表user_favorite_products.那么在用户模型下则 public function favoriteProducts() { return $this->belongsToMany(Product::class, 'user_favorite_products') ->withTimestamps() //中间表时间 ->orderBy('user_favorite_products.created

laravel中关联模型查询选择性的字段

在使用 Laravel 的关联查询中,我们经常使用 with 方法来避免 1+N 查询,但是 with 会将目标关联的所有字段全部查询出来,对于有强迫症的PHPer来说,当然是不允许发生的. 第一种方法:在模型里就写好,固定死 方便简洁,但是不能针对不同的需求去关联不同的字段,一旦在模型关联中写死,所有的关联的字段都是一样的 在user模型里,写关联函数,一对多.此模型放在APP\Models下,默认放在App下 1 public function hasPost(){ 2 return $th

thinkphp 3.2中依靠关联模型来关联三个表

这里说的是用thinkphp3.2关联模型关联三个表 根据用户表查询出三个表的数据,需要两个model来配合,第一个model是根据user表来查询到班级的信息,然后第二个model是根绝banji中的信息去查询年级中的信息 还有一个模型也可以做到这种效果,就是视图模型

Laravel Eloquent—模型间关系(关联)

Eloquent是什么 Eloquent 是一个 ORM,全称为 Object Relational Mapping,翻译为 "对象关系映射"(如果只把它当成 Database Abstraction Layer 数组库抽象层那就太小看它了).所谓 "对象",就是本文所说的 "模型(Model)":对象关系映射,即为模型间关系.中文文档: http://laravel-china.org/docs/eloquent#relationships 下

TP5模型belongsTo和hasOne的区别

在使用tp5模型的ORM的时候出现belongsTo和hasOne都有表示一对一的关系,但是二者并不相同.以下举例说明两者的区别: 首先有user表 字段 id name password字段 然后有user_address表 id user_id city字段 在User模型中关联user_address表的时候使用hasOne,因为在user表中没有关联两个表的外键 在UserAddress模型中关联user表的时候使用belongsTo,因为在user_address表中有关联两个表的外键

thinkphp关联模型的用法

HAS_ONE(值得注意的是,这是主动关联,外键必须是被关联的表): 1 <?php 2 namespace Home\Model; 3 use Think\Model\RelationModel; 4 class TagModel extends RelationModel{ 5 protected $_link =array( 6 'artag'=>array(//关联的数据表 7 'mapping_type'=>self::HAS_ONE,//一对一 8 'class_name'