fastadmin a表关联b表,b表关联c表

这篇博客深入探讨了在Fastadmin框架下如何处理A表与B表的一对一关联,以及B表与C表之间的关联。通过分析`model/drivercar.php`和`controller/drivercar.php`中的代码示例,博主详细解释了一对一关联模型`OneToOne.php`的实现方法,为读者展示了如何在实际项目中进行多表关联查询和操作。
摘要由CSDN通过智能技术生成

model/drivercar.php

public function user()
    {
        return $this->belongsTo('User', 'driver_id', 'id', [], 'INNER')->setEagerlyType(0);
    }
    public function company(){
        return $this->belongsTo('Company','user.company_id','id',[], 'LEFT')->setEagerlyType(0);
    }
    public function team(){
        return $this->belongsTo('Team','user.team_id','id',[], 'LEFT')->setEagerlyType(0);
    }

controller/drivercar.php

if ($this->request->isAjax()) {
            //如果发送的来源是Selectpage,则转发到Selectpage
            if ($this->request->request('keyField')) {
                return $this->selectpage();
            }
            list($where, $sort, $order, $offset, $limit) = $this->buildparams();

            $list = $this->model
                    ->with(['user','
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值