thinkphp6中hasMany、hasOne 和 belongsTo说明

要求:在thinkphp6中,有一个订单表order查询记录,关联多个goods图片,一个送货地址, 一个用户头像。hasMany、hasOne 和 belongsTo 从模型设置到控制器调用用代码说明

说明:在 ThinkPHP 6 中,如果 Order 模型中已经定义了 belongsTo 关联关系指向 User 模型,那么在 User 模型中不需要再额外定义 hasMany 关联关系指向 Order 模型。

假设我们有以下模型:

  • Order:订单模型
  • GoodsImage:商品图片模型
  • Address:送货地址模型
  • User:用户模型

1. 设置模型关联关系

Order 模型
namespace app\model;

use think\Model;

class Order extends Model
{
    // 订单关联商品图片
    public function goodsImages()
    {
        return $this->hasMany(GoodsImage::class);
    }

    // 订单关联送货地址
    public function address()
    {
        return $this->hasOne(Address::class);
    }

    // 订单关联用户
    public function user()
    {
        return $this->belongsTo(User::class);
    }
}
GoodsImage 模型
namespace app\model;

use think\Model;

class GoodsImage extends Model
{
    // 商品图片关联订单
    public function order()
    {
        return $this->belongsTo(Order::class);
    }
}
Address 模型
namespace app\model;

use think\Model;

class Address extends Model
{
    // 送货地址关联订单
    public function order()
    {
        return $this->belongsTo(Order::class);
    }
}
User 模型
namespace app\model;

use think\Model;

class User extends Model
{
    // 用户关联订单
    public function orders()
    {
        return $this->hasMany(Order::class);
    }
}

2. 在控制器中调用关联关系

在控制器中查询订单及关联数据
namespace app\controller;

use app\model\Order;

class OrderController
{
    public function show($id)
    {
        // 获取订单及关联数据
        $order = Order::with('goodsImages', 'address', 'user')->find($id);

        // 返回订单及关联数据给视图或其他操作
        return view('order/show', ['order' => $order]);
    }
}

在这个示例中,我们在 OrderController 控制器中的 show 方法中使用了 with 方法来预加载订单关联的商品图片、送货地址和用户数据。然后,我们可以在视图中轻松地访问订单及其关联数据。

相关推荐
晨曦_子画5 分钟前
编程语言之战:AI 之后的 Kotlin 与 Java
android·java·开发语言·人工智能·kotlin
Black_Friend13 分钟前
关于在VS中使用Qt不同版本报错的问题
开发语言·qt
南宫生28 分钟前
贪心算法习题其三【力扣】【算法学习day.20】
java·数据结构·学习·算法·leetcode·贪心算法
希言JY37 分钟前
C字符串 | 字符串处理函数 | 使用 | 原理 | 实现
c语言·开发语言
残月只会敲键盘38 分钟前
php代码审计--常见函数整理
开发语言·php
xianwu54338 分钟前
反向代理模块
linux·开发语言·网络·git
Heavydrink41 分钟前
HTTP动词与状态码
java
ktkiko1144 分钟前
Java中的远程方法调用——RPC详解
java·开发语言·rpc
计算机-秋大田1 小时前
基于Spring Boot的船舶监造系统的设计与实现,LW+源码+讲解
java·论文阅读·spring boot·后端·vue
神里大人1 小时前
idea、pycharm等软件的文件名红色怎么变绿色
java·pycharm·intellij-idea