下面由Laravel教程栏目给大家分享8个Laravel模型时间戳使用小技巧,看看你都没用过,没用就快来收藏吧,希望对大家有所帮助!
默认情况下,Laravel Eloquent
模型默认数据表有 created_at
和 updated_at
两个字段。当然,我们可以做很多自定义配置,实现很多有趣的功能。下面举例说明。
如果数据表没有这两个字段,保存数据时 Model::create($arrayOfValues); ——会看到 SQL error
。Laravel
在自动填充 created_at / updated_at
的时候,无法找到这两个字段。
禁用自动填充时间戳,只需要在 Eloquent Model
添加上一个属性:
class Role extends Model { public $timestamps = FALSE; // ... 其他的属性和方法 }
假如当前使用的是非 Laravel
类型的数据库,也就是你的时间戳列的命名方式与此不同该怎么办? 也许,它们分别叫做 create_time 和 update_time。恭喜,你也可以在模型种这么定义:
class Role extends Model { const CREATED_AT = 'create_time'; const UPDATED_AT = 'update_time';
以下内容引用官网文档 official Laravel documentation:
默认情况下,时间戳自动格式为 'Y-m-d H:i:s'
。 如果您需要自定义时间戳格式, 可以在你的模型中设置 $dateFormat
属性。这个属性确定日期在数据库中的存储格式,以及在序列化成数组或JSON时的格式:
class Flight extends Model { /** * 日期时间的存储格式 * * @var string */ protected $dateFormat = 'U'; }
当在多对多的关联中,时间戳不会自动填充,例如 用户表 users 和 角色表roles的中间表role_user。
在这个模型中您可以这样定义关系:
class User extends Model { public function roles() { return $this->belongsToMany(Role::class); } }
然后当你想用户中添加角色时,可以这样使用:
$roleID = 1; $user->roles()->attach($roleID);
默认情况下,这个中间表不包含时间戳。并且Laravel
不会尝试自动填充created_at/updated_at
但是如果你想自动保存时间戳,您需要在迁移文件中添加created_at/updated_at
,然后在模型的关联中加上->withTimestamps();
public function roles() { return $this->belongsToMany(Role::class)->withTimestamps(); }
latest()
和oldest()
进行时间戳排序使用时间戳排序有两个 “快捷方法”。
取而代之:
User::orderBy('created_at', 'desc')->get();
这么做更快捷:
User::latest()->get();
默认情况,latest() 使用 created_at 排序。
与之对应,有一个 oldest() ,将会这么排序 created_at ascending
User::oldest()->get();
当然,也可以使用指定的其他字段排序。例如,如果想要使用 updated_at,可以这么做:
$lastUpdatedUser = User::latest('updated_at')->first();
updated_at
的修改无论何时,当修改 Eloquent
记录,都将会自动使用当前时间戳来维护 updated_at 字段,这是个非常棒的特性。
但是有时候你却不想这么做,例如:当增加某个值,认为这不是 “整行更新”。
那么,你可以一切如上—— 只需禁用 timestamps
,记住这是临时的:
$user = User::find(1); $user->profile_views_count = 123; $user->timestamps = false; $user->save();
与上一个例子恰好相反,也许您需要仅更新updated_at字段,而不改变其他列。
所以,不建议下面这种写法:
$user->update(['updated_at' => now()]);
您可以使用更快捷的方法:
$user->touch();
另一种情况,有时候您不仅希望更新当前模型的updated_at,也希望更新上级关系的记录。
例如,某个comment被更新,那么您希望将post表的updated_at
也更新。
那么,您需要在模型中定义$touches
属性:
class Comment extends Model { protected $touches = ['post']; public function post() { return $this->belongsTo('Post'); } }
Carbon
类最后一个技巧,但更像是一个提醒,因为您应该已经知道它。
默认情况下,created_at和updated_at字段被自动转换为$dates,
所以您不需要将他们转换为Carbon
实例,即可以使用Carbon
的方法。
例如:
$user->created_at->addDays(3); now()->diffInDays($user->updated_at);
就这样,快速但希望有用的提示!
英文原文地址:https://laraveldaily.com/8-tricks-with-laravel-timestamps/
译文地址:https://learnku.com/laravel/t/39353
以上是【整理分享】Laravel模型时间戳的8个使用小技巧的详细内容。更多信息请关注PHP中文网其他相关文章!