gpt4 book ai didi

Laravel Eloquent,附加与关系同名的属性

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

<?php 

class Product extends Eloquent {

protected appends = array('category');

public function category()
{
return $this->belongsTo('Models\Category',
'category_id');
}

}

如何做到这一点?

最佳答案

<?php 

class Product extends Eloquent {

protected $with = array('category');
//protected $appends = array('category');

public function category()
{
return $this->belongsTo('Models\Category',
'category_id');
}

}

定义一个 $with属性而不是 $appends属性(property)。这是一个急切的负载。

关于Laravel Eloquent,附加与关系同名的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21851407/

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