gpt4 book ai didi

php - 无法在数据透视表中创建多个多对多关系

转载 作者:可可西里 更新时间:2023-11-01 08:05:13 24 4
gpt4 key购买 nike

我正在尝试在 Laravel 5 中创建一个应用程序来跟踪患者的医学检查,以便我可以创建患者病史,我使用 Eloquent 作为我的模型抽象推荐。

为此,我使用 laravel 迁移创建了三个表和一个数据透视表,如下图所示: enter image description here

用户可以是医生或管理员,他们输入患者针对他们所做的特定检查的分数结果,例如我有一个数据透视表,其中包含三个外键以关联三个实体:

  • 考试编号
  • 患者编号
  • 用户编号

在 Eloquent 中,我根据 Laravel 文档制作了这些多对多模型 Many To Many支持提议的业务逻辑:

<?php
// Patient.php
class Patient extends Model
{
public function exams() {

return $this->belongsToMany('App\Exam', 'exam_patient');
}
}

// Exam.php
class Exam extends Model
{
public function patients()
{

return $this->belongsToMany('App\Patient', 'exam_patient');
}

public function users()
{

return $this->belongstoMany('App\User', 'exam_patient');
}
}

// User.php
class User extends Model
{
public function exams() {

return $this->belongsToMany('App\Exam', 'exam_patient');
}
}

在修补程序中,我尝试在进行重大更改之前模拟一个常见用例:医生对患者进行检查:

 >>> $user= App\User::first()
=> App\User {#671
id: "1",
name: "Victor",
email: "",
created_at: "2015-10-10 18:33:54",
updated_at: "2015-10-10 18:33:54",
}

>>> $patient= App\Patient::first()
=> App\Patient {#669
id: "1",
username: "",
name: "Tony",
lastname: "",
birthday: "0000-00-00",
created_at: "2015-10-10 18:32:56",
updated_at: "2015-10-10 18:32:56",
}

>>> $exam= App\Exam::first()
=> App\Exam {#680
id: "1",
name: "das28",
title: "Das28",
created_at: "2015-10-10 18:31:31",
updated_at: "2015-10-10 18:31:31",
}

>>> $user->save()
=> true
>>> $patient->save()
=> true
>>> $exam->save()
=> true

问题是当我尝试链接(或附加)至少两个模型时出现以下错误:

   >>> $patient->exams()->attach(1) 
Illuminate\Database\QueryException with message
'SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a
child row: a foreign key constraint fails (`cliniapp`.`exam_patient`, CONSTRAINT
`exam_patient_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
ON DELETE CASCADE) (SQL: insert into `exam_patient` (`exam_id`, `patient_id`)
values (1, 1))'

如果我连其中两个都不能连接,我怎么能连接这三个模型呢?修补程序中有什么方法可以大量附加它们,以便我可以将它们关联到我的数据透视表 (exam_patient) 中,而 MySql 不会显示该错误,或​​者如果我的方法有误?非常感谢任何帮助。

最佳答案

当您的 Many to Many 上有额外字段时关系,您必须在声明关系时“注册”它们,如上述链接的检索中间表列部分所示。

因此,您应该始终声明您的“额外”数据透视表,这些表因您定义关系的位置而异:

class Patient extends Model
{
public function exams()
{
return $this->belongsToMany('App\Exam', 'exam_patient')->withPivot('user_id');
}
}

class Exam extends Model
{
public function patients()
{
return $this->belongsToMany('App\Patient', 'exam_patient')->withPivot('user_id');
}

public function users()
{
return $this->belongstoMany('App\User', 'exam_patient')->withPivot('patient_id');
}
}

class User extends Model
{
public function exams()
{
return $this->belongsToMany('App\Exam', 'exam_patient')->withPivot('patient_id');
}
}

Attaching/Detaching 部分,您可以看到您可以像这样设置这些额外的字段:

$patient->exams()->attach($exam->id, ['user_id' => $user->id]);

你的问题是,当你在没有为 user_id 列传递数据的情况下创建患者/检查关系时,你的 exam_patient 表上的 user_id 外键约束失败了,所以上面的方法会起作用。

如果您出于某种原因不想始终像那样传递 user_id,您还可以使该 user_id 列在数据库中可以为空。

当然,有人认为使用两个数据透视表(exam_patient 和 exam_user)或使用多对多多态关系会是一种更好的方法。


Laravel docs on polymorphic relations 可以看出,为了在此处实现它们,我们将删除 exam_patient 表以​​获得 examable 表,该表将包含 3 列:exam_id、examable_id 和 examable_type。

模型看起来像:

class Patient extends Model
{
public function exams()
{
return $this->morphToMany('App\Exam', 'examable');
}
}

class Exam extends Model
{
public function patients()
{
return $this->morphedByMany('App\Patient', 'examable');
}

public function users()
{
return $this->morphedByMany('App\User', 'examable');
}
}

class User extends Model
{
public function exams()
{
return $this->morphToMany('App\Exam', 'examable');
}
}

要完全更新 examable 表,您需要执行以下操作:

$exam->patients()->save($patient);
$exam->users()->save($user);

所以这是两个查询而不是一个,你失去了外键关系,“examables”是一个尴尬的名字。

的论点是,这种关系更具声明性,并且更容易处理属于多个用户/医生的单个患者的单个检查。

关于php - 无法在数据透视表中创建多个多对多关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33072716/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com