$eagerlyType
$eagerlyType :
Class OneToOne
$model : \think\Model
$query : \think\db\Query
eagerly(\think\db\Query $query, string $relation, mixed $field, string $joinType, \Closure $closure, boolean $first) : void
预载入关联查询(JOIN方式)
\think\db\Query | $query | 查询对象 |
string | $relation | 关联名 |
mixed | $field | 关联字段 |
string | $joinType | JOIN方式 |
\Closure | $closure | 闭包条件 |
boolean | $first |
eagerlyResult(\think\Model $result, string $relation, string $subRelation, \Closure $closure, boolean $join = false) : void
预载入关联查询(数据)
\think\Model | $result | 数据对象 |
string | $relation | 当前关联名 |
string | $subRelation | 子关联名 |
\Closure | $closure | 闭包 |
boolean | $join | 是否为JOIN方式 |
save(mixed $data) : \think\Model|false
保存(新增)当前关联数据对象
mixed | $data | 数据 可以使用数组 关联模型对象 和 关联对象的主键 |
getParent() : \think\Model
获取关联的所属模型
getModel() : \think\Model
获取当前的关联模型类的实例
getQuery() : \think\db\Query
获取当前的关联模型类的实例
__construct(\think\Model $parent, string $model, string $foreignKey, string $localKey, string $relation = null)
架构函数
\think\Model | $parent | 上级模型对象 |
string | $model | 模型名 |
string | $foreignKey | 关联外键 |
string | $localKey | 关联主键 |
string | $relation | 关联名 |
getRelation(string $subRelation = '', \Closure $closure = null) : \think\Model
延迟获取关联数据
string | $subRelation | 子关联名 |
\Closure | $closure | 闭包查询条件 |
relationCount(\think\Model $result, \Closure $closure, string $aggregate = 'count', string $field = '*', string $name = '') : integer
关联统计
\think\Model | $result | 数据对象 |
\Closure | $closure | 闭包 |
string | $aggregate | 聚合查询方法 |
string | $field | 字段 |
string | $name | 统计字段别名 |
associate(\think\Model $model) : \think\Model
添加关联数据
\think\Model | $model | 关联模型对象 |
dissociate() : \think\Model
注销关联数据
eagerlyOne(\think\Model $result, string $relation, string $subRelation, \Closure $closure) : void
预载入关联查询(数据)
\think\Model | $result | 数据对象 |
string | $relation | 当前关联名 |
string | $subRelation | 子关联名 |
\Closure | $closure | 闭包 |
match(string $model, string $relation, \think\Model $result) : void
一对一 关联模型预查询拼装
string | $model | 模型名称 |
string | $relation | 关联名 |
\think\Model | $result | 模型对象实例 |
bindAttr(\think\Model $model, \think\Model $result) : void
绑定关联属性到父模型
\think\Model | $model | 关联模型对象 |
\think\Model | $result | 父模型对象 |