gpt4 book ai didi

laravel - 将查询数据中的字段添加到 Eloquent 模型中,而不使用属性

转载 作者:行者123 更新时间:2023-12-03 07:58:42 28 4
gpt4 key购买 nike

我想向 Eloquent 模型实例添加一个字段。该字段数据来自查询,而不是常量或值。

是的,可以通过向 $appends 添加一个字段并添加一个属性来完成,但这种方法的问题是,它并不是真正作为字段添加到对象中,而是作为函数调用之类的东西添加到对象中,这使得每个访问它时,它会导致对数据库的查询,如果数据不会更改,则查询将不必要地浪费时间。

在这种情况下,我可以创建一个 PDO 并填充它,但我想知道这是否可以用 Eloquent 的方式来完成。

我尝试在引导方法中添加范围或其他内容,但没有任何效果。

我已经搜索过,但没有找到任何东西,所以我在这里询问是否可以使用 Scope、boot 方法或任何其他 Laravel/Eloquent 方式来完成。感谢您抽出时间。

最佳答案

所以在这里澄清一些事情。在模型上使用访问器类似于计算字段,您可以在模型上调用未映射到表中字段的属性,例如:

===

Laravel 9 文档说明

为了让事情更清楚,这是use accessors with a model的唯一方法。在 Laravel 9 之前。自 Laravel 9 发布以来,文档和 Attribute 的使用中不再提及此方法。 is introduced .

class User extends Model {
protected function firstName(): Attribute
{
return Attribute::make(
get: fn ($value) => ucfirst($value),
);
}
}

// will search for a method called `firstName` and then `getFirstNameAttribute`.
User::find(1)->first_name;

在我看来,这根本没有带来任何改进。这只是缩小了使用函数名称的模型范围,由于 Eloquents 模型中已经发生了所有的魔法,因此它会不情愿地意外地调用魔法方法。

===

class User extends Model {

function getMyFieldAttribute() {
return "user {$this->id} computed value"
}

}

// will result in 'user 1 computed value'
echo User::find(1)->my_field;

$appends属性用于将表中任何不存在的字段或关系附加到已处理的输出(例如使用 User::toJson() 的 JSON)或User::toArray() 。您还可以使用$appends字段来保存您定义的任何访问器字段的状态。现在您可以使用两者的组合,如果您想使用查询来填充属性,但该查询应该执行一次,只需检查该属性是否存在,如果存在,则跳过它。

class User extends Model {

protected $appends = ['my_field'];

// using $appends
function getMyFieldAttribute() {
if(!isset($this->attributes['my_field'])) {
// perform a query, setting the time as an example
$this->attributes['my_field'] = now();
}

return $this->attributes['my_field'];
}

}

$User = User::find(1);
$index = 0;
while($index < 5) {
// this query will be executed once
echo "{$User->my_field}\n";
$index++;
// in this example you will see 5 times the same timestamp.
sleep(1);
}


yhiamdan在他的回答中指出,getter方法getMyFieldAttribute如果设置,第一个参数将填充计算的属性值。第一次调用时,该值将为 null ,在任何后续调用中,如果使用 setAttribute 设置,它将填充计算值。或$this->attributes .

class User extends Model {

public function getMyFieldAttribute($value) {
if(!$value) {
$value = now()
$this->setAttribute('my_field', $value);
// or the same with
// $this->attributes['my_field'] = $value;
}

return $value;
}

}

您不能将 eloquents 属性与类 User 上定义的属性混合使用。 ,这永远达不到魔法方法__get__set用于神奇地调用函数getMyFieldAttributesetMyFieldAttribute .

class User extends Model {

public $my_field = 'overwrite';

public function getMyFieldAttribute() {
return 'this will never be reached'
}

}

echo User::find(1)->my_field; // will output 'overwrite'

请提醒自己,这只是访问器字段的 getter 方法。所以属性my_field应该有 getMyFieldAttributesetMyFieldAttribute功能。在上面的设置中,getMyFieldAttribute在赋值时既可以用作变量值,也可以用作静态值。

关于laravel - 将查询数据中的字段添加到 Eloquent 模型中,而不使用属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75098179/

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