首先看看thinkPHP5.0的模型介绍 这里关联有一对一,多对多,一对多,多对一。还有预载入(就是查询预写好,php界面调用时候才查询)还有关联统计,聚合等。这里只讲解通过一对一的预载入,推
首先看看thinkPHP5.0的模型介绍
这里关联有一对一,多对多,一对多,多对一。还有预载入(就是查询预写好,php界面调用时候才查询)还有关联统计,聚合等。这里只讲解通过一对一的预载入,推出其他的。
这里文档举例了关于Profile和User的一对一关系,
Model层
Profile有外键($foreignKey)uid关联到User的id,因为id是默认的字段,可以不用写,所以关联关系这么写
class Profile extends Model{ public functionuser(){ return $this->belongsTo('User','uid'); }}
也可以这么写,这么写是相当于select * from user where id = (?1), ?1是查出的Profile的uid,赋值进去,相当于两次查询,一次查询Profile,然后再查询User
class Profile extends Model{ public functionuser(){ return $this->belongsTo('User','uid','id'); }}
控制层
$profile = Profile::get(1);
这里$profile获取了所有的字段(包扣uid(?1)),相当于select * from profile.第一层查询。然后belongsTo查询才能够继续下去(select * from user where id = (?1))
实操
写控制层(第一层查询)
$question = new Question();$lists = $question->field('id,question_category,name,right_num,"show",content')->with('questionCategory1')->order('create_time asc')->paginate($this->web_data['list_rows'], false, $page_param);$this->assign([ 'lists' => $lists, 'page' => $lists->render(), 'total' => $lists->total()]);
with里面是预加载的方法名,也是调用的属性名,例如,本文中的questionCategory1。
写视图层(第二层调用)
{foreach name="lists" item="list"} {$list.id} {$list.name} {$list.content} {$list.right_num} {$list->questionCategory1['title']} {if condition="$list.show eq '1'"}已显示 {else /} 已隐藏 {/if} {if condition="$list.show eq '1'"} 隐藏 {else /} 修改 显示 删除 {/if} {/foreach}
这里的${lists}是后台传参(assign)过来的参数,是个对象数组,通过循环显示在界面上。
{$list->questionCategory1['title']}就是调用了questionCategory1这个方法,取到里面的title属性,这里调用触发了预加载功能
写模型层
Question
namespace app\common\model;use think\Model;class Question extends Model{ protected $name = 'question'; public function questionAnswer() { return $this->hasMany("QuestionAnswer", "question_id", "id"); } //注意这里的questionCategory1特地加1是因为防止和和question_category的驼峰一致导致报错 //这里field一定要查询出QuestionCategory的主键id,因为这个作为第二层查询的条件,如果去掉id会报错 //这里的QuestionCategory的主键是id,question_category是Question的外键(关联QuestionCategory) public function questionCategory1() { return $this->belongsTo('QuestionCategory','question_category','id')->field('id,title'); }}
A:这里的Question的预加载方法是questionCategory1(声明),跟控制层的with(预加载)匹配,也跟视图层的questionCategory1(调用)匹配
B:然后从属关系,是一对一的QuestionCategory和Question,外键在Question上,外键名字是question_category,主键在QuestionCategory上的id
C:belongsTo的field代表Question这个模型的方法questionCategory1预加载了模型QuestionCategory的id和title属性,id作为第二次查询的条件和第一层查出来的question_category匹配作为条件
D:而且question_category不能和方法名驼峰一致。必须不相同。例如该方法的questionCategory和question_category相同会报错。所以改成了questionCategory1方法名
QuestionCategory
namespace app\common\model;use think\Model;class QuestionCategory extends Model{ protected $name = 'question_category';}
同理推得一对多
public function questionAnswer() { return $this->hasMany("QuestionAnswer", "question_id", "id"); }
同理推理的一对一
public function adminLogData() { return $this->hasOne('AdminLogData','log_id','id')->field('data_id,log_id,data'); }
等等
来源地址:https://blog.csdn.net/weixin_36667844/article/details/128931779
--结束END--
本文标题: thinkphp关于模型一对多,多对多,多对一的使用
本文链接: https://lsjlt.com/news/387713.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0