gpt4 book ai didi

php - Laravel - 尝试访问不在选择中的属性时抛出异常

转载 作者:行者123 更新时间:2023-12-03 09:19:10 25 4
gpt4 key购买 nike

例如,模型有很多属性,但在 select 中我只指定了几个属性。

$listings = Realty::select('city', 'mls', 'class_id')->get();

如何使一个特征(prefebable)或类继承 Eloquent,如果我尝试访问不在 select 中的属性,它将抛出异常:

$propertyType = $listings[0]->property_type; // returns `null`, but I need 
// RuntimeException or ErrorException

最佳答案

当您尝试读取 Eloquent 对象的属性时,Eloquent 会尝试按以下顺序从不同位置读取该值:

  • 从数据库中获取的属性
  • 动态属性 getter
  • 关系

因此,如果您想在尝试访问上述任何一个中不存在的属性时获得异常,则需要重写模型中的最后一部分 - getRelationValue 方法:

public function getRelationValue($key)
{
if ($this->relationLoaded($key)) {
return $this->relations[$key];
}

if (method_exists($this, $key)) {
return $this->getRelationshipFromMethod($key);
}

throw new \Exception;
}

请记住,这不是面向 future 的。如果 Eloquent 的 future 版本更改了获取属性的实现方式,则可能需要更新上述方法的实现。

Laravel 5.0 更新

在 Laravel 5.0 中,覆盖 Eloquent 模型中的 getAttribute 方法就足够了:

public function getAttribute($key)
{
$inAttributes = array_key_exists($key, $this->attributes);
if ($inAttributes || $this->hasGetMutator($key))
{
return $this->getAttributeValue($key);
}

if (array_key_exists($key, $this->relations))
{
return $this->relations[$key];
}

if (method_exists($this, $key))
{
return $this->getRelationshipFromMethod($key);
}

throw new \Exception;
}

关于php - Laravel - 尝试访问不在选择中的属性时抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34737019/

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