Laravel:如何修改通知集合

时间:2018-03-05 06:56:12

标签: php laravel laravel-eloquent laravel-collection laravel-notification

我有一个返回用户database notifications的函数(用户模型为Notifiable):

return $user->notifications()->get();

返回的结果如下:

[
    {
        "id": "5d6548d3-1f9b-4da5-b332-afbf428df775",
        "type": "Meysam\\Notification\\Classes\\CommentCreated",
        "notifiable_id": 1,
        "notifiable_type": "RainLab\\User\\Models\\User",
        "data": {
            "userId": 2,
            "commentId": 18
        },
        "read_at": null,
        "created_at": "2018-03-05 09:58:34",
        "updated_at": "2018-03-05 09:58:34"
    },
    {
        "id": "2e22e24e-a972-4a30-afeb-0049a40966a7",
        "type": "Meysam\\Notification\\Classes\\CommentCreated",
        "notifiable_id": 1,
        "notifiable_type": "RainLab\\User\\Models\\User",
        "data": {
            "userId": 3,
            "commentId": 17
        },
        "read_at": null,
        "created_at": "2018-03-05 09:38:38",
        "updated_at": "2018-03-05 09:38:38"
    }
]

在返回之前修改此集合的最佳方法是什么?例如,我想从对象中删除"id"字段,将"type"字段的值更改为"CommentCreated",并为每个项添加"url", "username", "email", etc之类的新字段。将hiddenvisibleappend attributes添加到DatabaseNotification模型类(如果是,如何)是一个好主意? API Resources在这里有用吗?

2 个答案:

答案 0 :(得分:1)

适用于Laravel 5.5 +

使用API Resources

对于Laravel< 5.5

正如@linktoahref所建议的那样,最好使用分形。

根据定义,REF:http://fractal.thephpleague.com/

  

Fractal为复杂提供了一个表示和转换层   数据输出,在RESTful API中找到的,并且工作得很好   用JSON。可以将其视为JSON / YAML /等的视图层。

您可以使用分形将数据转换为适当的格式,在使用laravel时,最好为每个模型创建分形并在需要时使用。它可以接受模型并对每个字段执行转换,并以适当的数据格式返回。

spatie/laravel-fractal是开始分形的好方法。

答案 1 :(得分:1)

如果您只想更改集合的返回值,则可以这样做:

$user->notifications()->get()->map(function($item) {
   unset($item['id']); //remove id
   $item['type'] = "CommentCreated"; //change the value of "type" field
   $item['url'] = "url content"; //add new data
   $item['username'] = "username content"; //add new data
   $item['email'] = "email content"; //add new data
   return $item;
});