thinkphp5 模型表关联
Posted 跳动的汗水
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5 模型表关联相关的知识,希望对你有一定的参考价值。
student 表 外键 grade_id
grade 表主键 id
在 模型中student
表关联方法
public function Grade(){
return $this->hasOne(‘Grade‘,‘id‘,‘grade_id‘,‘‘);
}
在控制器中 使用
$artres = Student::with("grade")->paginate()->toArray();
with 表示关联, toArray 必须用负责转换不成数组
以上是关于thinkphp5 模型表关联的主要内容,如果未能解决你的问题,请参考以下文章