tp5模型一对一关联hasOne
Posted yc-l
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5模型一对一关联hasOne相关的知识,希望对你有一定的参考价值。
在一个模型中,新建方法实现外键关联
<?php namespace appusermodel; use thinkModel; class GridmanReportLogs extends Model { protected $table = ‘sq_gridman_report_logs‘; protected $pk = ‘id‘; protected $resultSetType = ‘collection‘; public function reportTypeName() { return $this->hasOne(‘GridmanReportType‘, ‘id‘, ‘report_type_id‘)->bind(‘report_type‘); } public function user() { return $this->hasOne(‘Users‘, ‘id‘, ‘user_id‘)->bind(‘name‘); } }
- hasOne(关联模型,关联模型主键,当前模型外键)
- bind(‘name‘),将关联模型得name属性绑定到当前模型
通过with关联表使用该方法
$this->gridmanReportLogs->with(‘user‘, ‘LEFT‘)->where(‘user_id‘, $userId)->select();
以上是关于tp5模型一对一关联hasOne的主要内容,如果未能解决你的问题,请参考以下文章