gpt4 book ai didi

php - 组合访问器和修改器逻辑以将自定义属性添加到模型

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:38:14 25 4
gpt4 key购买 nike

我知道 Laravel 的 accessors and mutators可以在获取或设置模型时调整属性值。但是,这只能使用现有的模型属性来完成。我想知道是否有任何方法可以创建访问器和修改器的组合,让我为每个模型项设置自定义属性。

然后,当我例如使用 Eloquent 检索标签:

$tags = Tag::all();

我可以在循环中访问现有属性:

foreach ($tags as $tag) {
echo $tag->id.'<br>';
echo $tag->name.'<br>';
// and ohers
}

还有我设置的自定义项,例如$tag->customAttr1$tag->customAttr2

这可能吗?

最佳答案

这是向您的模型添加自定义属性的示例。$appends 数组将添加那些。在使用 Eloquent 查询您的表时,.. 将调用相应的 getter 来设置值。

在下面的代码片段中,'parent_name' 和 'parent_img_url' 是自定义属性,getParentNameAttributegetParentImgUrlAttribute是 setter/getter 。

可以根据需要修改getters的代码。

class Code extends Eloquent {
protected $table = 'codes';
protected $appends = array('parent_name', 'parent_img_url');

protected $guarded = array();

public static $rules = array();

public function components()
{
return $this->belongsToMany('Component', 'component_codes', 'component_id', 'code_id');
}

public function getParentNameAttribute()
{
$parent = Component::find(50);
return $parent->name_en;
}

public function getParentImgUrlAttribute()
{
$parent = Component::find(50);
return $parent->thumb;
}

}

关于php - 组合访问器和修改器逻辑以将自定义属性添加到模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30593831/

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