How To Cast Eloquent Pivot Parameters?(如何投射 Eloquent Pivot 参数?)
问题描述
我有以下带有关系的 Eloquent 模型:
I have the following Eloquent Models with relationships:
class Lead extends Model
{
public function contacts()
{
return $this->belongsToMany('AppContact')
->withPivot('is_primary');
}
}
class Contact extends Model
{
public function leads()
{
return $this->belongsToMany('AppLead')
->withPivot('is_primary');
}
}
数据透视表包含一个附加参数 (is_primary
),用于将关系标记为主要关系.目前,我在查询联系人时看到这样的返回:
The pivot table contains an additional param (is_primary
) that marks a relationship as the primary. Currently, I see returns like this when I query for a contact:
{
"id": 565,
"leads": [
{
"id": 349,
"pivot": {
"contact_id": "565",
"lead_id": "349",
"is_primary": "0"
}
}
]
}
有没有办法将其中的 is_primary
转换为布尔值?我已经尝试将它添加到两个模型的 $casts
数组中,但这并没有改变任何东西.
Is there a way to cast the is_primary
in that to a boolean? I've tried adding it to the $casts
array of both models but that did not change anything.
推荐答案
由于这是数据透视表上的一个属性,因此使用 $casts
属性将不适用于 Lead
或 Contact
模型.
Since this is an attribute on the pivot table, using the $casts
attribute won't work on either the Lead
or Contact
model.
但是,您可以尝试的一件事是使用自定义 Pivot
模型并定义了 $casts
属性.自定义数据透视模型的文档位于此处.基本上,您使用自定义创建一个新的 Pivot
模型,然后更新 Lead
和 Contact
模型以使用此自定义 Pivot
模型而不是基础模型.
One thing you can try, however, is to use a custom Pivot
model with the $casts
attribute defined. Documentation on custom pivot models is here. Basically, you create a new Pivot
model with your customizations, and then update the Lead
and the Contact
models to use this custom Pivot
model instead of the base one.
首先,创建您的自定义 Pivot
模型,它扩展了基本的 Pivot
模型:
First, create your custom Pivot
model which extends the base Pivot
model:
<?php namespace App;
use IlluminateDatabaseEloquentRelationsPivot;
class PrimaryPivot extends Pivot {
protected $casts = ['is_primary' => 'boolean'];
}
现在,覆盖 Lead
和 Contact
模型上的 newPivot()
方法:
Now, override the newPivot()
method on the Lead
and the Contact
models:
class Lead extends Model {
public function newPivot(Model $parent, array $attributes, $table, $exists) {
return new AppPrimaryPivot($parent, $attributes, $table, $exists);
}
}
class Contact extends Model {
public function newPivot(Model $parent, array $attributes, $table, $exists) {
return new AppPrimaryPivot($parent, $attributes, $table, $exists);
}
}
这篇关于如何投射 Eloquent Pivot 参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何投射 Eloquent Pivot 参数?
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01