我正在尝试使用Laravel和Vue JS实现通知系统。我实现了一切,它需要工作,但Notification类不是广播。
.env文件
BROADCAST_DRIVER=pusher
PUSHER_APP_ID=40xxxx
PUSHER_KEY=5a6axxxxxx
PUSHER_SECRET=b35xxxxxx
已经运行以下命令:
npm install --save laravel-echo pusher-js
composer require pusher/pusher-php-server "~2.6"
app.js中的(取消注释)
App\Providers\BroadcastServiceProvider::class,
BroadcastServiceProvider.php
Broadcast::channel('App.User.*', function ($user, $userID) {
return (int) $user->id === (int) $userID;
});
bootstrap.js
import Echo from "laravel-echo"
window.Pusher = require('pusher-js');
window.Echo = new Echo({
broadcaster: 'pusher',
key: '5a6axxxxxx',
cluster: 'eu',
encrypted: true,
authEndpoint: "/broadcasting/auth"
});
window.Pusher.log = function(message){
window.console.log(message);
}
window.Echo.private('App.User.1')
.notification((notification) => {
console.log(notification.type);
});
Laravel日志中没有错误。在并行中,我正在检查Pusher的调试控制台,只在那里连接和断开请求。为什么它没有推出任何错误以及它为什么不能正常工作?
答案 0 :(得分:0)
我有同样的问题。就我而言,问题的原因是User
模型通过命名空间App\Models\User
的放置。
解决此问题的第一种方法是:
在BroadcastServiceProvider.php或route / channels.php中(如果laravel 5.7 +)
Broadcast::channel('App.Models.User.*', function ($user, $userID) {
return (int) $user->id === (int) $userID;
});
解决此问题的第二种方法是:
在User
模型添加方法
public function receivesBroadcastNotificationsOn() {
return 'users.'.$this->id;
}
以及在BroadcastServiceProvider.php或route / channels.php中(如果laravel 5.7 +)
Broadcast::channel('users.{user_id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});