当前路径:vendor/topthink/think-orm/src/model/relation/HasOneThrough.php <?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006~2019 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: liu21st <liu21st@gmail.com> // +---------------------------------------------------------------------- namespace think\model\relation; use Closure; use think\helper\Str; use think\Model; /** * 远程一对一关联类 */ class HasOneThrough extends HasManyThrough { /** * 延迟获取关联数据 * @access public * @param array $subRelation 子关联名 * @param Closure $closure 闭包查询条件 * @return Model */ public function getRelation(array $subRelation = [], Closure $closure = null) { if ($closure) { $closure($this->getClosureType($closure)); } $this->baseQuery(); $relationModel = $this->query->relation($subRelation)->find(); if ($relationModel) { $relationModel->setParent(clone $this->parent); } return $relationModel; } /** * 预载入关联查询(数据集) * @access protected * @param array $resultSet 数据集 * @param string $relation 当前关联名 * @param array $subRelation 子关联名 * @param Closure $closure 闭包 * @param array $cache 关联缓存 * @return void */ public function eagerlyResultSet(array &$resultSet, string $relation, array $subRelation = [], Closure $closure = null, array $cache = []): void { $localKey = $this->localKey; $foreignKey = $this->foreignKey; $range = []; foreach ($resultSet as $result) { // 获取关联外键列表 if (isset($result->$localKey)) { $range[] = $result->$localKey; } } if (!empty($range)) { $this->query->removeWhereField($foreignKey); $data = $this->eagerlyWhere([ [$this->foreignKey, 'in', $range], ], $foreignKey, $subRelation, $closure, $cache); // 关联数据封装 foreach ($resultSet as $result) { // 关联模型 if (!isset($data[$result->$localKey])) { $relationModel = null; } else { $relationModel = $data[$result->$localKey]; $relationModel->setParent(clone $result); $relationModel->exists(true); } // 设置关联属性 $result->setRelation($relation, $relationModel); } } } /** * 预载入关联查询(数据) * @access protected * @param Model $result 数据对象 * @param string $relation 当前关联名 * @param array $subRelation 子关联名 * @param Closure $closure 闭包 * @param array $cache 关联缓存 * @return void */ public function eagerlyResult(Model $result, string $relation, array $subRelation = [], Closure $closure = null, array $cache = []): void { $localKey = $this->localKey; $foreignKey = $this->foreignKey; $this->query->removeWhereField($foreignKey); $data = $this->eagerlyWhere([ [$foreignKey, '=', $result->$localKey], ], $foreignKey, $subRelation, $closure, $cache); // 关联模型 if (!isset($data[$result->$localKey])) { $relationModel = null; } else { $relationModel = $data[$result->$localKey]; $relationModel->setParent(clone $result); $relationModel->exists(true); } $result->setRelation($relation, $relationModel); } /** * 关联模型预查询 * @access public * @param array $where 关联预查询条件 * @param string $key 关联键名 * @param array $subRelation 子关联 * @param Closure $closure * @param array $cache 关联缓存 * @return array */ protected function eagerlyWhere(array $where, string $key, array $subRelation = [], Closure $closure = null, array $cache = []): array { // 预载入关联查询 支持嵌套预载入 $keys = $this->through->where($where)->column($this->throughPk, $this->foreignKey); if ($closure) { $closure($this->getClosureType($closure)); } $list = $this->query ->where($this->throughKey, 'in', $keys) ->cache($cache[0] ?? false, $cache[1] ?? null, $cache[2] ?? null) ->select(); // 组装模型数据 $data = []; $keys = array_flip($keys); foreach ($list as $set) { $data[$keys[$set->{$this->throughKey}]] = $set; } return $data; } }
相关源码
- 可旋转的彩色立方体C#源代码2021-10-29
- 在线考试系统2021-10-15
- EduSoho开源网校系统源码2019-06-27
- 仿拼多多小程序商城源码2019-06-06
- PHP5网站运行监测系统源码2017-04-14
关于我们 | 顾问团队 | 发展历程 | 联系我们 | 源码上传
联系电话(Tel):4008-010-151(免长途)
地址:北京市海淀区大恒科技大厦五层 邮编:100080
Floor 5th,Daheng Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2023. 京ICP备09089570号 | 京公网安备11010702000869号
联系电话(Tel):4008-010-151(免长途)
地址:北京市海淀区大恒科技大厦五层 邮编:100080
Floor 5th,Daheng Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2023. 京ICP备09089570号 | 京公网安备11010702000869号