84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
我最近開始使用 Model::preventLazyLoading() 但即使關係未加載但有時可能會加載,它實際上也會引發錯誤
Model::preventLazyLoading()
像資源 'discount' => $this->whenLoaded('meta', $this->meta->discount ?? 0),
'discount' => $this->whenLoaded('meta', $this->meta->discount ?? 0),
laravel版本:9.17.0
讓 PHP 在此解析您的語法。無論如何,它都必須載入$this->meta,因為當PHP 解析您的程式碼時,它優先於whenLoaded() 方法.
PHP
$this->meta
whenLoaded()
$this->whenLoaded('meta', $this->meta->discount ?? 0)
這就是為什麼 whenLoaded() 可以採用 closure() 來避免載入關係,除非它們實際上已載入。此方法將在滿足 whenLoaded() 條件後首先評估閉包。
closure()
$this->whenLoaded('meta', function () { return $this->meta->discount ?? 0; });
讓
PHP
在此解析您的語法。無論如何,它都必須載入$this->meta
,因為當PHP
解析您的程式碼時,它優先於whenLoaded()
方法.這就是為什麼
whenLoaded()
可以採用closure()
來避免載入關係,除非它們實際上已載入。此方法將在滿足whenLoaded()
條件後首先評估閉包。