dongxixia6399 2017-12-14 06:57
浏览 62
已采纳

如何在Laravel 5.5中实现事件

The Laravel Eloquent Event docs give this example:

namespace App;

use App\Events\UserSaved;
use App\Events\UserDeleted;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Notifiable;

    /**
     * The event map for the model.
     *
     * @var array
     */
    protected $dispatchesEvents = [
        'saved' => UserSaved::class,
        'deleted' => UserDeleted::class,
    ];
}

I simply want to know what would go in a UserSaved::class to, let's say, add a hash id on the initial save. The docs are frustratingly opaque at this point!

  • 写回答

2条回答 默认 最新

  • dousao2186 2017-12-14 07:12
    关注

    In any of your model event classes, just do this:

    For example: App\Events\UserSaved.php

    <?php
    
    namespace App\Events;
    
    use Illuminate\Queue\SerializesModels;
    
    class UserSaved
    {
    
        use SerializesModels;
    
        /**
         * @var \App\User
         */
        public $user;
    
        public function __construct($user)
        {
            // All dispatched model events will receive an instance
            // of the model itself. Usually, we'll just assign
            // it as a property of this event class
            $this->user = $user;
        }
    }
    

    Dispatched event are supplied with the model instance, as shown in the source code:

    Documentation: Defining Events

    So at the later time when your listeners caught this event, they will have an instance of this UserSaved object, and you can just access user from $userSaved->user.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程