首页 > php框架 > Laravel > 分享Laravel7消息通知日期序列化解决方案

分享Laravel7消息通知日期序列化解决方案

藏色散人
发布: 2021-07-01 08:58:07
转载
1963 人浏览过

→推荐:《laravel教程

由于项目中使用到了消息通知功能,于是自然而然写出了如下代码

public function index(Request $request)
{
    $notifications = \Auth::user()->notifications()->paginate($request->size);

    return $this->success($notifications);
}
登录后复制

然而发现日期格式化不对

Laravel 7 消息通知日期序列化解决方案

但是模型基类使用了 HasDateTimeFormatter trait, 代码如下:

<?php

namespace App\Models\Traits;

trait HasDateTimeFormatter
{
    protected function serializeDate(\DateTimeInterface $date)
    {
        return $date->format($this->dateFormat ?: &#39;Y-m-d H:i:s&#39;);
    }
}
登录后复制

查看源代码发现 IlluminateNotificationsNotifiable 这个 trait 有两个 trait,其中
IlluminateNotificationsHasDatabaseNotificationsnotifications() 方法关联的是IlluminateNotificationsDatabaseNotification 这个类, 由于这个类是laravel 自带的, 所以serializeDate方法自然不会起作用。
找到了问题所在,那就解决吧。首先定义自己的 Notification 模型类, 继承自框架自带的 IlluminateNotificationsDatabaseNotification 类,再引用 HasDateTimeFormatter trait,代码如下:

<?php

namespace App\Models;

use App\Models\Traits\HasDateTimeFormatter;
use Illuminate\Notifications\DatabaseNotification;

class Notification extends DatabaseNotification
{
    use HasDateTimeFormatter;

    public function notifiable()
    {
        return $this->morphTo();
    }
}
登录后复制

最后我们在 User 模型中覆盖 notifications() 方法,使用我们自己定义的    Notification 模型来关联,代码如下:

<?php

namespace App\Models;

use App\Models\Traits\HasDateTimeFormatter;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Tymon\JWTAuth\Contracts\JWTSubject;

class User extends Authenticatable implements JWTSubject
{
    use Notifiable, HasDateTimeFormatter;

    public function notifications()
    {
        return $this->morphMany(Notification::class, &#39;notifiable&#39;)->orderBy(&#39;created_at&#39;, &#39;desc&#39;);
    }
}
登录后复制

问题解决,效果如下:

Laravel 7 消息通知日期序列化解决方案 《相关推荐:最新的五个Laravel视频教程》 

以上是分享Laravel7消息通知日期序列化解决方案的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:learnku.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板