加载中...

一对一关联


一对一关联

版本 新增功能
5.0.4 增加关联属性绑定到父模型功能

定义

定义一对一关联,例如,一个用户都有一个个人资料,我们定义User模型如下:

  1. namespace app\index\model;
  2. use think\Model;
  3. class User extends Model
  4. {
  5. public function profile()
  6. {
  7. return $this->hasOne('Profile');
  8. }
  9. }

hasOne方法的参数包括:

hasOne('关联模型名','外键名','主键名',['模型别名定义'],'join类型');

默认的join类型为INNER

V5.0.3+版本开始,可以支持为关联模型定义需要查询的字段,例如:

  1. namespace app\index\model;
  2. use think\Model;
  3. class User extends Model
  4. {
  5. public function profile()
  6. {
  7. return $this->hasOne('Profile')->field('id,name,email');
  8. }
  9. }

关联查找

定义好关联之后,就可以使用下面的方法获取关联数据:

  1. $user = User::find(1);
  2. // 输出Profile关联模型的email属性
  3. echo $user->profile->email;

默认情况下, 我们使用的是user_id 作为外键关联,如果不是的话则需要在关联定义的时候指定,例如:

  1. namespace app\index\model;
  2. use think\Model;
  3. class User extends Model
  4. {
  5. public function profile()
  6. {
  7. return $this->hasOne('Profile','uid');
  8. }
  9. }

有一点需要注意的是,关联方法的命名规范是驼峰法,而关联属性则一般是小写+下划线的方式,系统在获取的时候会自动转换对应,读取user_profile关联属性则对应的关联方法应该是userProfile

设置别名

如果你的模型名和数据库关键字冲突的话,可以设置别名,例如:

  1. namespace app\index\model;
  2. use think\Model;
  3. class User extends Model
  4. {
  5. public function profile()
  6. {
  7. return $this->hasOne('Profile','uid')->setAlias(['user'=>'member']);
  8. }
  9. }

关联新增

  1. $user = User::find(1);
  2. // 如果还没有关联数据 则进行新增
  3. $user->profile()->save(['email' => 'thinkphp']);

系统会自动把当前模型的主键传入profile模型。

关联更新

和新增一样使用save方法进行更新关联数据。

  1. $user = User::find(1);
  2. $user->profile->email = 'thinkphp';
  3. $user->profile->save();
  4. // 或者
  5. $user->profile->save(['email' => 'thinkphp']);

定义相对的关联

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

  1. namespace app\index\model;
  2. use think\Model;
  3. class Profile extends Model
  4. {
  5. public function user()
  6. {
  7. return $this->belongsTo('User');
  8. }
  9. }

belongsTo的参数包括:

belongsTo('关联模型名','外键名','关联表主键名',['模型别名定义'],'join类型');

默认的关联外键是user_id,如果不是,需要在第二个参数定义

  1. namespace app\index\model;
  2. use think\Model;
  3. class Profile extends Model
  4. {
  5. public function user()
  6. {
  7. return $this->belongsTo('User','uid');
  8. }
  9. }

我们就可以根据档案资料来获取用户模型的信息

  1. $profile = Profile::find(1);
  2. // 输出User关联模型的属性
  3. echo $profile->user->account;

绑定属性到父模型(V5.0.4+)

可以在定义关联的时候使用bind方法绑定属性到父模型,例如:

  1. namespace app\index\model;
  2. use think\Model;
  3. class User extends Model
  4. {
  5. public function profile()
  6. {
  7. return $this->hasOne('Profile','uid')->bind('nickname,email');
  8. }
  9. }

或者使用数组的方式指定绑定属性别名

  1. namespace app\index\model;
  2. use think\Model;
  3. class User extends Model
  4. {
  5. public function profile()
  6. {
  7. return $this->hasOne('Profile','uid')->bind([
  8. 'email',
  9. 'truename' => 'nickname',
  10. 'profile_id' => 'id',
  11. ]);
  12. }
  13. }

然后使用关联预载入查询的时候,可以使用

  1. $user = User::find(1);
  2. // 输出Profile关联模型的email属性
  3. echo $user->email;
  4. echo $user->profile_id;

绑定关联属性不影响原有关联属性的读取,绑定关联模型的属性支持读取器。

如果不是预载入查询,请使用模型的appendRelationAttr方法追加属性。


还没有评论.