Laravel echo 不监听私有通知回调。尝试了互联网上的一切
Laravel echo doesn't listen to private notification callback. Tried everything on the internet
我一直在调试我的 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;
});
我知道为什么我的 echo 不起作用,因为每当我触发 event(new NotificationEvent)
之类的事件时,我都会检查推送的调试控制台,我在 pusher
上收到此消息
{
"test" : "nesting"
"id" : "ecc9912f-0ae2-44dc-b905-677f93bfc38b"
"type" : "App\Notifications\WorkflowUpdateNotification"
}
我的 public 频道工作正常。我的私人频道缺少什么。
解决方案
出于某种原因,我的广播频道无法使用私人频道。因此,我必须准确指定接收哪个频道通知。所以,我像这样更新 User
模型并且它起作用了。
public function receivesBroadcastNotificationsOn()
{
return 'App.User.'.$this->id;
}
我一直在调试我的 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;
});
我知道为什么我的 echo 不起作用,因为每当我触发 event(new NotificationEvent)
之类的事件时,我都会检查推送的调试控制台,我在 pusher
{
"test" : "nesting"
"id" : "ecc9912f-0ae2-44dc-b905-677f93bfc38b"
"type" : "App\Notifications\WorkflowUpdateNotification"
}
我的 public 频道工作正常。我的私人频道缺少什么。
解决方案
出于某种原因,我的广播频道无法使用私人频道。因此,我必须准确指定接收哪个频道通知。所以,我像这样更新 User
模型并且它起作用了。
public function receivesBroadcastNotificationsOn()
{
return 'App.User.'.$this->id;
}