码迷,mamicode.com
首页 > 其他好文 > 详细

tp5模型一对一关联hasOne

时间:2020-04-08 19:28:39      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:code   prot   HERE   protected   return   fun   logs   names   his   

在一个模型中,新建方法实现外键关联

<?php
namespace app\user\model;

use think\Model;

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

标签:code   prot   HERE   protected   return   fun   logs   names   his   

原文地址:https://www.cnblogs.com/YC-L/p/12640196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!