关于thinkphp5的嵌套关联预载入的写法,thinkphp5.1完全开发手册上写着:

也可以支持嵌套预载入,例如:

$list = User::with('profile.phone')->select([1,2,3]);
foreach($list as $user){
    // 获取用户关联的phone模型
    dump($user->profile->phone);
}

假如我自己的需求是查User 表id为5用户的用户名user.name以及关联的信息表的地址profile.address,信息表同时用id关联手机号表,同时要查出手机号状态phone.status,定义的关联如下

User模型

public function HasProfile(){
return $this->hasOne('Profile','user_id','id');
}

Profile

public function HasPhone(){
return $this->hasOne('Phone','id','phone_id');
}

我本以为是这样写查询

User::where('id',5)->field('id,name')->with(['HasProfile'=>function($query){
$query->field('user_id,id,address');
},'HasProfile.HasPhone'=>function($query){
$query->field('phone_id,status');
}])->find();

结果直接报错,而去掉

['HasProfile'=>function($query){
$query->field('user_id,id,address');
}

虽然有结果但把信息表所有字段查出来了,浪费了一些性能,我小小的一番思考后便知道了正确的写法

User::where('id',5)->field('id,name')->with(['HasProfile'=>function($query){
$query->field('user_id,id,address')->with(['HasPhone'=>function($query){
$query->field('phone_id,status');
}]);
}])->find();

以作记录

04-13 06:38