一对一关联-j9九游

 

版本 功能调整
5.0.5 增加关联自动写入和删除
5.0.4 增加关联属性绑定到父模型功能

定义

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

namespace appindexmodel;
use thinkmodel;
class user extends model
{
    public function profile()
    {
        return $this->hasone('profile');
    }
}

hasone方法的参数包括:

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

默认的join类型为inner

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

namespace appindexmodel;
use thinkmodel;
class user extends model
{
    public function profile()
    {
        return $this->hasone('profile')->field('id,name,email');
    }
}

如果使用的是join方式的关联,不支持指定field字段。

5.0.5 版本开始,模型别名定义参数已经废弃。

关联查找

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

$user = user::get(1);
// 输出profile关联模型的email属性
echo $user->profile->email;

如果要根据关联表的查询条件查询当前模型的数据,可以使用haswhere方法,例如:

$user = user::haswhere('profile',['email'=>'thinkphp@qq.com'])->find();
echo $user->name;

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


namespace appindexmodel;
use thinkmodel;
class user extends model 
{
    public function profile()
    {
        return $this->hasone('profile','uid');
    }
}

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

关联新增

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

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

关联更新

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

$user = user::get(1);
$user->profile->email = 'thinkphp';
$user->profile->save();
// 或者
$user->profile->save(['email' => 'thinkphp']);

定义相对的关联

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

namespace appindexmodel;
use thinkmodel;
class profile extends model 
{
    public function user()
    {
        return $this->belongsto('user');
    }
}

belongsto的参数包括:

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

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


namespace appindexmodel;
use thinkmodel;
class profile extends model 
{
    public function user()
    {
        return $this->belongsto('user','uid');
    }
}

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

$profile = profile::get(1);
// 输出user关联模型的属性
echo $profile->user->account;

绑定属性到父模型(v5.0.4

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


namespace appindexmodel;
use thinkmodel;
class user extends model 
{
    public function profile()
    {
        return $this->hasone('profile','uid')->bind('nickname,email');
    }
}

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


namespace appindexmodel;
use thinkmodel;
class user extends model 
{
    public function profile()
    {
        return $this->hasone('profile','uid')->bind([
        		'email',
                'truename'	=> 'nickname',
                'profile_id'  => 'id',
            ]);
    }
}

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

$user = user::get(1,'profile');
// 输出profile关联模型的email属性
echo $user->email;
echo $user->profile_id;

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

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

关联自动写入(v5.0.5

我们可以使用together方法更方便的进行关联自动写入操作。

写入

$blog = new blog;
$blog->name = 'thinkphp';
$blog->title = 'thinkphp5关联实例';
$content = new content;
$content->data = '实例内容';
$blog->content = $content;
$blog->together('content')->save();

更新

// 查询
$blog = blog::get(1);
$blog->title = '更改标题';
$blog->content->data = '更新内容';
// 更新当前模型及关联模型
$blog->together('content')->save();

删除

// 查询
$blog = blog::get(1);
// 删除当前及关联模型
$blog->together('content')->delete();
文档最后更新时间:2018-06-09 15:33:38
网站地图