$parent
$parent :
Class Relation
$model : \think\Model
$query : \think\db\Query
getParent() : \think\Model
获取关联的所属模型
getModel() : \think\Model
获取当前的关联模型类的实例
getQuery() : \think\db\Query
获取当前的关联模型类的实例
__construct(\think\Model $parent, string $model, string $through, string $foreignKey, string $throughKey, string $localKey)
架构函数
\think\Model | $parent | 上级模型对象 |
string | $model | 模型名 |
string | $through | 中间模型名 |
string | $foreignKey | 关联外键 |
string | $throughKey | 关联外键 |
string | $localKey | 当前主键 |
getRelation(string $subRelation = '', \Closure $closure = null) : \think\Collection
延迟获取关联数据
string | $subRelation | 子关联名 |
\Closure | $closure | 闭包查询条件 |
has(string $operator = '>=', integer $count = 1, string $id = '*', string $joinType = 'INNER') : \think\db\Query
根据关联条件查询当前模型
string | $operator | 比较操作符 |
integer | $count | 个数 |
string | $id | 关联表的统计字段 |
string | $joinType | JOIN类型 |
hasWhere(mixed $where = array(), mixed $fields = null) : \think\db\Query
根据关联条件查询当前模型
mixed | $where | 查询条件(数组或者闭包) |
mixed | $fields | 字段 |
eagerlyResult(\think\Model $result, string $relation, mixed $subRelation = '', \Closure $closure = null) : void
预载入关联查询(数据)
\think\Model | $result | 数据对象 |
string | $relation | 当前关联名 |
mixed | $subRelation | 子关联名 |
\Closure | $closure | 闭包 |
relationCount(\think\Model $result, \Closure $closure, string $aggregate = 'count', string $field = '*', string $name = null) : integer
关联统计
\think\Model | $result | 数据对象 |
\Closure | $closure | 闭包 |
string | $aggregate | 聚合查询方法 |
string | $field | 字段 |
string | $name | 统计字段别名 |