热门标签
更多>
搜索结果
查询Tags标签: belongsToMany,共有 2条记录-
thinkphp6.x出现的问题多对多模型关联belongsToMany的中间表pivot取不出数据
public function role(){return $this->belongsToMany(Role::class, Access::class, role_id, auth_id);}这样取不到中间表数据 AuthModel::find(2)->role解决 \vendor\topthink\think-orm\src\model\relation\BelongsToMany.php 中 getRelation 替换成旧版本的/***…
2021/11/3 17:11:57 人评论 次浏览 -
thinkphp6.x出现的问题多对多模型关联belongsToMany的中间表pivot取不出数据
public function role(){return $this->belongsToMany(Role::class, Access::class, role_id, auth_id);}这样取不到中间表数据 AuthModel::find(2)->role解决 \vendor\topthink\think-orm\src\model\relation\BelongsToMany.php 中 getRelation 替换成旧版本的/***…
2021/11/3 17:11:57 人评论 次浏览