阅读(2574) (8)

Laravel 8 监听通知

2021-07-06 09:24:46 更新

通知将在使用 {notifiable}.{id} 形式格式化的私有频道上进行广播。因此,如果您要发送通知到 ID 为 1AppModelsUser 实例上,通知将在 App.User.1 私有频道上广播。当使用 Laravel Echo 时,您可以使用 notification 辅助函数来方便的监听通知:

Echo.private('App.User.' + userId)
    .notification((notification) => {
        console.log(notification.type);
    });