使用连接回复增强laravel-echo-server

时间:2017-03-27 12:58:37

标签: websocket socket.io

我使用laravel-echo-server将消息从我的应用程序广播到我的浏览器。

我的问题是:如何配置我的laravel-echo-server,以便在用户连接到频道时向用户发送一些消息。

我看到我可以在我的代码中运行laravel-echo-server,但有没有办法可以“捕获”订阅事件?

1 个答案:

答案 0 :(得分:0)

在你的引导程序中:

require('./echo-channels');

然后在同一目录的echo-channels.js中:

window.Echo.private('Notify.Others')
    .listen('event-name', function (e) {
        console.log(e.method);
    });

不要错过提及: RTFM:https://laravel.com/docs/5.5/broadcasting#installing-laravel-echo