Get previous attribute value in Eloquent model event(在 Eloquent 模型事件中获取先前的属性值)
问题描述
有没有办法在 saving
或 updating
事件中查看模型属性的旧/以前值?
例如.是否有以下可能:
User::updating(function($user){if ($user->username != $user->old->username) doSomething();});
好吧,我是偶然发现的,因为它目前不在文档中...
有一个 getOriginal()
方法可以返回原始属性值的数组:
User::updating(function($user){if ($user->username != $user->getOriginal('username')) {做一点事();}//如果你需要多个属性,你可以使用://$originalAttributes = $user->getOriginal();//$originalUsername = $originalAttributes['username'];});
<块引用>
小心,在 Laravel 7 之前 getOriginal
忽略属性类型转换.
Is there a way to see the old/previous value of a model's attribute in its saving
or updating
event?
eg. Is something like the following possible:
User::updating(function($user)
{
if ($user->username != $user->old->username) doSomething();
});
Ok, I found this quite by chance, as it's not in the documentation at present...
There is a getOriginal()
method available which returns an array of the original attribute values:
User::updating(function($user)
{
if ($user->username != $user->getOriginal('username')) {
doSomething();
}
// If you need multiple attributes you may use:
// $originalAttributes = $user->getOriginal();
// $originalUsername = $originalAttributes['username'];
});
Be careful, prior to Laravel 7
getOriginal
ignores attribute type casting.
这篇关于在 Eloquent 模型事件中获取先前的属性值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Eloquent 模型事件中获取先前的属性值
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01