作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我开发了一个仪表板,它通过自定义事件获取实时通知。我想实现的是能够在 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);
},
window.Echo = new Echo({
broadcaster: 'pusher',
key: '29564c255fe1dae3654b',
cluster: 'eu',
encrypted: true,
});
最佳答案
对于连接:
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/
我是一名优秀的程序员,十分优秀!