为什么我不能将消息发送到Pusher,但可以从Pusher接收消息?

时间:2019-07-04 09:16:32

标签: laravel laravel-5 pusher

我正在我的应用程序中聊天,而我正在使用pusher。我做了推杆告诉我要做的一切。我在前端使用vanilla-js。我可以在前端连接。我可以接收来自推送程序的消息(查看channel.bind()),但是我的消息没有发送到任何地方。 附言:我完成了所有配置(.env,broadcasting.php)

前锋

=DATE(1901,3,0)

BACKEND

1901-02-28

事件

var pusher = new Pusher('xxxxxxxx', {
                cluster: 'eu',
                forceTLS: false
            });
            window.channelName = 'my-channel-' + {{ $chat->id }};
            window.event = 'private-conversation';
            var channel = pusher.subscribe(window.channelName);
            channel.bind(window.event, function (data) {
               alert(data);
            });

0 个答案:

没有答案