gpt4 book ai didi

Laravel Eloquent - 合并父 $appends

转载 作者:行者123 更新时间:2023-12-02 00:04:27 27 4
gpt4 key购买 nike

假设我有两个模型,VeichleCar

Veichle extends Model {
$appends = ['append_1', 'append_2'];
}

Car extends Veichle {
$appends = ['append_3', 'append_4'];
}

如果我有 Car 对象,如何使用 append_1?这样 Car 类就覆盖了父类 $appends,我没有找到任何合并它的方法

最佳答案

您可以在构造函数中使用 append 方法来完成此操作,因为它会将提供的属性附加到现有属性:

Car extends Vehicle
{
public function __construct(array $attributes = [])
{
parent::__construct($attributes);

$this->append(['append_3', 'append_4']);
}
}

关于Laravel Eloquent - 合并父 $appends,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61077468/

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