我试图在Laravel 5中创建一个应用程序,用于跟踪患者的医疗检查,以便创建患者病史,我使用Eloquent作为我的模型抽象推荐。
我使用laravel迁移为此创建了三个表和一个数据透视表,如下图所示:
用户可以是医生或管理员,他们输入患者所做特定考试的分数结果,例如我有一个数据透视表,其中包含三个与三个实体相关的外键:
在Eloquent中,我根据Laravel Documentation 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没有显示错误或者如果我在我的方法中弄错了?非常感谢任何帮助。
答案 0 :(得分:4)
当您的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');
}
}
在附加/分离部分,您可以看到可以设置这些额外的字段,如下所示:
$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中看到的,为了在这里实现它们,我们删除了一个 examable 表的exam_patient表,该表有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”是一个尴尬的名字。
争论的关键是关系更具说明性,并且对于属于多个用户/医生的单个患者来说,处理单个检查更容易。