getRelation()
getRelation(array $subRelation = array(), \Closure $closure = null) : \think\Collection
延迟获取关联数据
Parameters
array | $subRelation | 子关联 |
\Closure | $closure | 闭包查询条件 |
模型关联接口
eagerlyResult(\think\Model $result, string $relation, array $subRelation = array(), \Closure $closure = null) : void
预载入关联查询
\think\Model | $result | 数据对象 |
string | $relation | 当前关联名 |
array | $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 | 统计字段别名 |