$relationWrite
$relationWrite : array
关联自动写入信息
模型关联处理
$relationWrite : array
关联自动写入信息
$parent : object
父关联模型对象
$relation : array
模型关联数据
$together : array
关联写入定义信息
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 | 当前模型关联键 |