版本功能调整
5.0.8中间表名无需前缀,并支持定义中间表模型
5.0.6attach方法返回值改为Pivot对象

关联定义

例如,我们的用户和角色就是一种多对多的关系,我们在User模型定义如下:

  1. <?php
  2. namespace appindexmodel;
  3. use thinkModel;
  4. class User extends Model
  5. {
  6. public function roles()
  7. {
  8. return $this->belongsToMany('Role');
  9. }
  10. }

belongsToMany方法的参数如下:

### belongsToMany('关联模型名','中间表名','外键名','当前模型关联键名',['模型别名定义']);

5.0.8+版本开始,中间表名无需添加表前缀,并支持定义中间表模型,例如:

  1. public function roles()
  2. {
  3. return $this->belongsToMany('Role','ppindexmodelAccess');
  4. }

关联查询

我们可以通过下面的方式获取关联数据

  1. $user = User::get(1);
  2. // 获取用户的所有角色
  3. dump($user->roles);

如果要获取中间表数据,可以使用

  1. $user = User::get(1);
  2. $roles = $user->roles;
  3. foreach($roles as $role){
  4. // 获取中间表数据
  5. dump($role->pivot);
  6. }

关联新增

  1. $user = User::get(1);
  2. // 增加关联数据 会自动写入中间表数据
  3. $user->roles()->save(['name'=>'管理员']);
  4. // 批量增加关联数据
  5. $user->roles()->saveAll([
  6. ['name'=>'管理员'],
  7. ['name'=>'操作员'],
  8. ]);

只新增中间表数据,可以使用

  1. $user = User::get(1);
  2. // 仅增加关联的中间表数据
  3. $user->roles()->save(1);
  4. // 或者
  5. $role = Role::get(1);
  6. $user->roles()->save($role);
  7. // 批量增加关联数据
  8. $user->roles()->saveAll([1,2,3]);

单独更新中间表数据,可以使用:

  1. $user = User::get(1);
  2. // 增加关联的中间表数据
  3. $user->roles()->attach(1);
  4. // 传入中间表的额外属性
  5. $user->roles()->attach(1,['remark'=>'test']);
  6. // 删除中间表数据
  7. $user->roles()->detach([1,2,3]);
V5.0.6+版本开始,attach方法的返回值是一个Pivot对象实例,如果是附加多个关联数据,则返回Pivot对象实例的数组。

定义相对的关联

我们可以在Role模型中定义一个相对的关联关系,例如:

  1. <?php
  2. namespace appindexmodel;
  3. use thinkModel;
  4. class Role extends Model
  5. {
  6. public function users()
  7. {
  8. return $this->belongsToMany('User');
  9. }
  10. }