gpt4 book ai didi

laravel - 如何在 Laravel Echo 中获取连接状态/其他事件

转载 作者:行者123 更新时间:2023-12-03 06:38:58 24 4
gpt4 key购买 nike

我开发了一个仪表板,它通过自定义事件获取实时通知。我想实现的是能够在 channel 之间切换。我使用 Vue(x) 作为前端。

created() {
this.setTeam(this.$router.currentRoute.name);
this.clearFastlanes();
this.getSprintInfo('getSprintInfo');
window.Echo.channel(this.getTeam)
.listen('.jira.issue', this.jiraIssue)
.listen('.jira.fastlane', this.jiraFastlane);
},

这是我订阅自定义事件的主要组件。唯一的问题是,这个组件也被另一个团队使用。所以我想将我的 channel 更改为当前团队(离开当前 channel 并加入新团队的 channel )。我真的无法在互联网上找到如何做到这一点。

这是我的连接方式:
window.Echo = new Echo({
broadcaster: 'pusher',
key: '29564c255fe1dae3654b',
cluster: 'eu',
encrypted: true,
});

所以基本上我想问 laravel echo 我当前是否已连接,如果是,请离开 channel 并连接到新团队。

有没有人知道如何实现这一目标?

最佳答案

对于连接:

    window.Echo.connector.pusher.connection.bind('connected', () => {
console.log('connected');
});

断开连接:
    window.Echo.connector.pusher.connection.bind('disconnected', () => {
console.log('disconnected);
});

关于laravel - 如何在 Laravel Echo 中获取连接状态/其他事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54458564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com