Laravel回声不监听私有通知回调。尝试了互联网上的所有内容

时间:2019-11-14 12:20:33

标签: laravel echo pusher laravel-echo

我一直在调试laravel Echo。

这里是bootstrap.js中的内容。我不使用vue.js,而仅使用本地服务器localhost:8000

import EchoObj from 'laravel-echo';

window.Echo = new EchoObj({
    broadcaster: 'pusher',
    key: process.env.MIX_PUSHER_APP_KEY,
    cluster: process.env.MIX_PUSHER_APP_CLUSTER,
    encrypted: true
});

Echo.private('App.User.'+ loggedUser.id)
.notification((notification) => {
    console.log(notification.type);
    alert("listening")
})

我的NotificationEvent控制器:

Class NotificationEvent extends Notification{
    public function via($notifiable)
    {
        return ['database', 'broadcast', 'mail'];
    }

   public function toBroadcast($notifiable){
        return new BroadcastMessage([
            "test" => "nesting"
        ]);
    }

    public function toArray($notifiable){}
    public function toDatabase($notifiable){}
}

Channel.php

Broadcast::channel('App.User.{id}', function ($user, $id) {
    return (int) $user->id === (int) $id;
});

我知道我的回声为什么不起作用,因为每当我触发event(new NotificationEvent)之类的事件时,我都会检查推送的调试控制台,

{
  "test" : "nesting"
  "id"  : "ecc9912f-0ae2-44dc-b905-677f93bfc38b"
  "type" : "App\\Notifications\\WorkflowUpdateNotification"
}

我的公共频道运行正常。我的私人频道上缺少什么。

1 个答案:

答案 0 :(得分:0)

解决方案

由于某种原因,我播放的频道无法在私人频道上播放。因此,我必须确切指定要接收的频道通知。因此,我像这样更新了User模型,它就起作用了。

 public function receivesBroadcastNotificationsOn()
    {
        return 'App.User.'.$this->id;
    }