Properties

$parent

$parent

$model

$model : \think\Model

Type

Model — 当前关联的模型类

$query

$query : \think\db\Query

Type

Query — 关联模型查询对象

$foreignKey

$foreignKey

$localKey

$localKey

$baseQuery

$baseQuery

$selfRelation

$selfRelation

$throughKey

$throughKey

$through

$through

$throughPk

$throughPk : string

中间主键

Type

string

Methods

getParent()

getParent() : \think\Model

获取关联的所属模型

Returns

\think\Model —

getModel()

getModel() : \think\Model

获取当前的关联模型类的实例

Returns

\think\Model —

getQuery()

getQuery() : \think\db\Query

获取当前的关联模型类的实例

Returns

\think\db\Query —

selfRelation()

selfRelation(bool  $self = true) : $this

设置当前关联为自关联

Parameters

bool $self

是否自关联

Returns

$this —

isSelfRelation()

isSelfRelation() : bool

当前关联是否为自关联

Returns

bool —

update()

update(array  $data = []) : int|string

更新数据

Parameters

array $data

更新数据

Returns

int|string —

delete()

delete(mixed  $data = null) : int

删除记录

Parameters

mixed $data

表达式 true 表示强制删除

Throws

\think\Exception
\think\model\PDOException

Returns

int —

__call()

__call(mixed  $method, mixed  $args) : mixed

Parameters

mixed $method
mixed $args

Returns

mixed —

__construct()

__construct(\think\Model  $parent, string  $model, string  $through, string  $foreignKey, string  $throughKey, string  $localKey) : mixed

架构函数

Parameters

\think\Model $parent

上级模型对象

string $model

模型名

string $through

中间模型名

string $foreignKey

关联外键

string $throughKey

关联外键

string $localKey

当前主键

Returns

mixed —

getRelation()

getRelation(string  $subRelation = '', \Closure  $closure = null) : \think\Collection

延迟获取关联数据

Parameters

string $subRelation

子关联名

\Closure $closure

闭包查询条件

Returns

\think\Collection —

has()

has(string  $operator = '>=', int  $count = 1, string  $id = '*', string  $joinType = 'INNER') : \think\db\Query

根据关联条件查询当前模型

Parameters

string $operator

比较操作符

int $count

个数

string $id

关联表的统计字段

string $joinType

JOIN类型

Returns

\think\db\Query —

hasWhere()

hasWhere(mixed  $where = [], mixed  $fields = null) : \think\db\Query

根据关联条件查询当前模型

Parameters

mixed $where

查询条件(数组或者闭包)

mixed $fields

字段

Returns

\think\db\Query —

eagerlyResultSet()

eagerlyResultSet(array  $resultSet, string  $relation, mixed  $subRelation = '', \Closure  $closure = null) : void

预载入关联查询(数据集)

Parameters

array $resultSet

数据集

string $relation

当前关联名

mixed $subRelation

子关联名

\Closure $closure

闭包

eagerlyResult()

eagerlyResult(\think\Model  $result, string  $relation, mixed  $subRelation = '', \Closure  $closure = null) : void

预载入关联查询(数据)

Parameters

\think\Model $result

数据对象

string $relation

当前关联名

mixed $subRelation

子关联名

\Closure $closure

闭包

relationCount()

relationCount(\think\Model  $result, \Closure  $closure, string  $aggregate = 'count', string  $field = '*', string  $name = null) : int

关联统计

Parameters

\think\Model $result

数据对象

\Closure $closure

闭包

string $aggregate

聚合查询方法

string $field

字段

string $name

统计字段别名

Returns

int —

getRelationCountQuery()

getRelationCountQuery(\Closure  $closure = null, string  $aggregate = 'count', string  $field = '*', string  $name = null) : string

创建关联统计子查询

Parameters

\Closure $closure

闭包

string $aggregate

聚合查询方法

string $field

字段

string $name

统计字段别名

Returns

string —

resultSetBuild()

resultSetBuild(array  $resultSet) : mixed

封装关联数据集

Parameters

array $resultSet

数据集

Returns

mixed —

getQueryFields()

getQueryFields(mixed  $model) : mixed

Parameters

mixed $model

Returns

mixed —

getRelationQueryFields()

getRelationQueryFields(mixed  $fields, mixed  $model) : mixed

Parameters

mixed $fields
mixed $model

Returns

mixed —

getQueryWhere()

getQueryWhere(mixed  $where, mixed  $relation) : mixed

Parameters

mixed $where
mixed $relation

Returns

mixed —

baseQuery()

baseQuery() : void

执行基础查询(仅执行一次)

eagerlyWhere()

eagerlyWhere(array  $where, string  $key, string  $relation, mixed  $subRelation = '', \Closure  $closure = null) : array

关联模型预查询

Parameters

array $where

关联预查询条件

string $key

关联键名

string $relation

关联名

mixed $subRelation

子关联

\Closure $closure

Returns

array —