How to update a HasOne relationship when a HasMany relationship also exists with the same model?(当同一模型也存在 HasMany 关系时,如何更新 HasOne 关系?)
问题描述
我正在尝试在 Eloquent 中定义相同的两个模型之间的 HasMany 和 HasOne 关系.
我的Organization类有很多Contact:
公共函数contacts(){返回 $this->hasMany(Contact::class);}同样,我的
Contact类反映了这种关系:公共函数组织(){返回 $this->belongsTo(Organization::class);}而且,每个
组织都有一个主要"联系人.我正在使用表列organizations.primary_contact_id来确定哪个:公共函数primaryContact(){返回 $this->hasOne(Contact::class, 'id', 'primary_contact_id');}从这里开始,我被卡住了.
Contact中的反向关系已经存在,所以我写了另一个我认为可以解决问题的函数,计算如果我更新了父表中的值,Eloquent 自然会在contacts 表中获取相应的记录,因为我定义了关系:/*** @param AppContact*/公共函数 setPrimaryContact($contact){$this->primary_contact_id = $contact->id;$this->save;}但它没有:
<预><代码>>>>$org = 组织::查找(17)=>应用组织 {#2923编号:17,name: "测试组织",primary_contact_id: 33,}>>>$alice= $org->primaryContact=>应用联系{#2938编号:33,组织 ID:17,fname: "爱丽丝",lname: "方丈",}>>>$bob = 联系人::查找(34)=>应用联系{#2939编号:34,组织 ID:17,fname: "鲍勃",lname: "面包师",}>>>$org->setPrimaryContact($bob)=>空值>>>$org=>应用组织 {#2923编号:17,name: "测试组织",primary_contact_id: 34,主要联系人:AppContact {#2938编号:33,组织 ID:17,fname: "爱丽丝",lname: "方丈",},}
您可以看到 setPrimaryContact($bob) 执行得很好,因为 primary_contact_id 已更新为 Bob 的 id,但是 primaryContact代码> 仍然列出 Alice.
为什么 primaryContact 没有返回正确的对象?
- 您的
setPrimaryContact方法不会更新您的表,因为您调用的是$this->save,而不是$this->save(),save是一个方法 - 在
$org->setPrimaryContact($bob)之后,你应该调用$org->primaryContact->refresh()以获取更新的记录.
I'm trying to define both a HasMany and HasOne relationship between the same two models in Eloquent.
My Organization class has many Contacts:
public function contacts()
{
return $this->hasMany(Contact::class);
}
And likewise, my Contact class reflects this relationship:
public function organization()
{
return $this->belongsTo(Organization::class);
}
But also, each Organization has exactly one "primary" Contact. I am using a table column organizations.primary_contact_id to identify which one:
public function primaryContact()
{
return $this->hasOne(Contact::class, 'id', 'primary_contact_id');
}
From here, I'm stuck. The reverse relationship in Contact already exists, so I wrote another function I thought would do the trick, figuring if I updated the value in the parent table, Eloquent would naturally fetch the corresponding record in the contacts table since I defined the relationship:
/**
* @param AppContact
*/
public function setPrimaryContact($contact)
{
$this->primary_contact_id = $contact->id;
$this->save;
}
But it doesn't:
>>> $org = Organization::find(17)
=> AppOrganization {#2923
id: 17,
name: "Test Org",
primary_contact_id: 33,
}
>>> $alice= $org->primaryContact
=> AppContact {#2938
id: 33,
organization_id: 17,
fname: "Alice",
lname: "Abbot",
}
>>> $bob = Contact::find(34)
=> AppContact {#2939
id: 34,
organization_id: 17,
fname: "Bob",
lname: "Baker",
}
>>> $org->setPrimaryContact($bob)
=> null
>>> $org
=> AppOrganization {#2923
id: 17,
name: "Test Org",
primary_contact_id: 34,
primaryContact: AppContact {#2938
id: 33,
organization_id: 17,
fname: "Alice",
lname: "Abbot",
},
}
You can see setPrimaryContact($bob) executed fine, as primary_contact_id got updated to Bob's id, but primaryContact still lists Alice.
Why is primaryContact not returning the correct object?
- Your
setPrimaryContactmethod won't update your table, because you call$this->save, not$this->save(),saveis a method - After
$org->setPrimaryContact($bob), you should call$org-> primaryContact->refresh()to get the updated record.
这篇关于当同一模型也存在 HasMany 关系时,如何更新 HasOne 关系?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:当同一模型也存在 HasMany 关系时,如何更新 HasOne 关系?
基础教程推荐
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何替换eregi() 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
