我最近开始使用 Model::preventLazyLoading()
但即使关系未加载但有时可能会加载,它实际上也会引发错误
像资源 'discount' => $this->whenLoaded('meta', $this->meta->discount ?? 0),
laravel版本:9.17.0
P粉9208354232024-01-06 11:06:13
让 PHP
在此处解析您的语法。无论如何,它都必须加载 $this->meta
,因为当 PHP
解析您的代码时,它优先于 whenLoaded()
方法.
$this->whenLoaded('meta', $this->meta->discount ?? 0)
这就是为什么 whenLoaded()
可以采用 closure()
来避免加载关系,除非它们实际上已加载。此方法将在满足 whenLoaded()
条件后首先评估闭包。
$this->whenLoaded('meta', function () { return $this->meta->discount ?? 0; });