$relationWrite
$relationWrite : array
关联自动写入信息
模型关联处理
setParent(\think\Model $model) : $this
设置父关联对象
\think\Model | $model | 模型对象 |
getParent() : \think\Model
获取父关联对象
has(string $relation, mixed $operator = '>=', integer $count = 1, string $id = '*', string $joinType = 'INNER') : \think\db\Query
根据关联条件查询当前模型
string | $relation | 关联方法名 |
mixed | $operator | 比较操作符 |
integer | $count | 个数 |
string | $id | 关联表的统计字段 |
string | $joinType | JOIN类型 |
hasWhere(string $relation, mixed $where = array(), mixed $fields = '*') : \think\db\Query
根据关联条件查询当前模型
string | $relation | 关联方法名 |
mixed | $where | 查询条件(数组或者闭包) |
mixed | $fields | 字段 |
eagerlyResult(\think\Model $result, string $relation, array $withRelationAttr = array(), boolean $join = false) : \think\Model
预载入关联查询 返回模型对象
\think\Model | $result | 数据对象 |
string | $relation | 关联名 |
array | $withRelationAttr | 关联获取器 |
boolean | $join | 是否为JOIN方式 |
relationCount(\think\Model $result, array $relations, string $aggregate = 'sum', string $field = '*') : void
关联统计
\think\Model | $result | 数据对象 |
array | $relations | 关联名 |
string | $aggregate | 聚合查询方法 |
string | $field | 字段 |
hasOne(string $model, string $foreignKey = '', string $localKey = '') : \think\model\relation\HasOne
HAS ONE 关联定义
string | $model | 模型名 |
string | $foreignKey | 关联外键 |
string | $localKey | 当前主键 |
belongsTo(string $model, string $foreignKey = '', string $localKey = '') : \think\model\relation\BelongsTo
BELONGS TO 关联定义
string | $model | 模型名 |
string | $foreignKey | 关联外键 |
string | $localKey | 关联主键 |
hasMany(string $model, string $foreignKey = '', string $localKey = '') : \think\model\relation\HasMany
HAS MANY 关联定义
string | $model | 模型名 |
string | $foreignKey | 关联外键 |
string | $localKey | 当前主键 |
hasManyThrough(string $model, string $through, string $foreignKey = '', string $throughKey = '', string $localKey = '') : \think\model\relation\HasManyThrough
HAS MANY 远程关联定义
string | $model | 模型名 |
string | $through | 中间模型名 |
string | $foreignKey | 关联外键 |
string | $throughKey | 关联外键 |
string | $localKey | 当前主键 |
belongsToMany(string $model, string $table = '', string $foreignKey = '', string $localKey = '') : \think\model\relation\BelongsToMany
BELONGS TO MANY 关联定义
string | $model | 模型名 |
string | $table | 中间表名 |
string | $foreignKey | 关联外键 |
string | $localKey | 当前模型关联键 |
morphOne(string $model, string|array $morph = null, string $type = '') : \think\model\relation\MorphOne
MORPH One 关联定义
string | $model | 模型名 |
string|array | $morph | 多态字段信息 |
string | $type | 多态类型 |
morphMany(string $model, string|array $morph = null, string $type = '') : \think\model\relation\MorphMany
MORPH MANY 关联定义
string | $model | 模型名 |
string|array | $morph | 多态字段信息 |
string | $type | 多态类型 |
morphTo(string|array $morph = null, array $alias = array()) : \think\model\relation\MorphTo
MORPH TO 关联定义
string|array | $morph | 多态字段信息 |
array | $alias | 多态别名定义 |
getRelationData(\think\model\Relation $modelRelation) : mixed
智能获取关联模型数据
\think\model\Relation | $modelRelation | 模型关联对象 |