$middle
$middle : string
中间表表名
多态多对多关联
$middle : string
中间表表名
$pivotName : string
中间表模型名称
$pivot : \think\model\Pivot
中间表模型对象
$pivotDataName : string
中间表数据名称
$parent : \think\Model
父模型对象
$model : string
当前关联的模型类名
$query : \think\db\BaseQuery
关联模型查询对象
$foreignKey : string
关联表外键
$localKey : string
关联表主键
$baseQuery : bool
是否执行关联基础查询
$selfRelation : bool
是否为自关联
$withLimit : int
关联数据数量限制
$withField : array
关联数据字段限制
$morphType : string
多态字段名
$morphClass : string
多态模型名
$inverse : bool
是否反向关联
__construct(\think\Model $parent, string $model, string $middle, string $morphType, string $morphKey, string $localKey, bool $inverse = false) : mixed
架构函数
\think\Model | $parent | 上级模型对象 |
string | $model | 模型名 |
string | $middle | 中间表名/模型名 |
string | $morphType | 多态字段名 |
string | $morphKey | 关联外键 |
string | $localKey | 当前模型关联键 |
bool | $inverse | 反向关联 |
has(string $operator = '>=', int $count = 1, string $id = '*', string $joinType = 'INNER', \think\db\BaseQuery $query = null) : \think\Model
根据关联条件查询当前模型
string | $operator | 比较操作符 |
int | $count | 个数 |
string | $id | 关联表的统计字段 |
string | $joinType | JOIN类型 |
\think\db\BaseQuery | $query | Query对象 |
hasWhere(mixed $where = [], mixed $fields = null, string $joinType = '', \think\db\BaseQuery $query = null) : \think\db\BaseQuery
根据关联条件查询当前模型
mixed | $where | 查询条件(数组或者闭包) |
mixed | $fields | 字段 |
string | $joinType | JOIN类型 |
\think\db\BaseQuery | $query | Query对象 |