标签:转换 think php5 表关联 oar 表示 public with cti
student 表 外键 grade_id
grade 表主键 id
在 模型中student
表关联方法
public function Grade(){
return $this->hasOne(‘Grade‘,‘id‘,‘grade_id‘,‘‘);
}
在控制器中 使用
$artres = Student::with("grade")->paginate()->toArray();
with 表示关联, toArray 必须用负责转换不成数组
标签:转换 think php5 表关联 oar 表示 public with cti
原文地址:https://www.cnblogs.com/whowhere/p/9122783.html