使用 Vue Router 时 Pusher 和 Vue.js 组件不离开频道
Pusher and Vue.js components not leaving channel when using Vue Router
我将 Pusher 与 Laravel Echo 结合使用,为我的应用程序中的某些区域创建状态通道。
我所有的前端路由都是用Vue Router完成的。
在切换路由时,Vue router 会根据我的路由设置加载某些组件。它工作得很好,但是,Pusher 不会自动断开用户与这些频道的连接。只有当我 运行 整页刷新时才会发生,这不是我想要的。
在我的组件中,加入Pusher频道的js代码在mounted
里面,像这样:
data() {
return {
users: [],
}
},
mounted() {
Echo.join('transaction.' + this.tid)
.here(users => {
this.users = users;
}
})
.joining(user => {
this.users.push(user);
})
.leaving(user => {
this.users.splice(this.users.indexOf(user), 1);
});
},
methods: {
// ...
},
如何在不刷新页面的情况下断开用户与使用 Vue Router 路由的频道的连接?
谢谢。
我相信 Vue Router 可能出于性能原因使组件实例保持活动状态。因此,即使在组件之间进行路由,websocket 通道仍然可以连接。
为了避免这个问题,您可以使用Vue的组件destroyed
方法手动离开频道。
由于您使用的是Laravel的Echo,您需要做的就是:Echo.leave('channel-name')
...
methods: {
// ...
},
destroyed() {
Echo.leave('transaction.' + this.tid);
}
我将 Pusher 与 Laravel Echo 结合使用,为我的应用程序中的某些区域创建状态通道。 我所有的前端路由都是用Vue Router完成的。
在切换路由时,Vue router 会根据我的路由设置加载某些组件。它工作得很好,但是,Pusher 不会自动断开用户与这些频道的连接。只有当我 运行 整页刷新时才会发生,这不是我想要的。
在我的组件中,加入Pusher频道的js代码在mounted
里面,像这样:
data() {
return {
users: [],
}
},
mounted() {
Echo.join('transaction.' + this.tid)
.here(users => {
this.users = users;
}
})
.joining(user => {
this.users.push(user);
})
.leaving(user => {
this.users.splice(this.users.indexOf(user), 1);
});
},
methods: {
// ...
},
如何在不刷新页面的情况下断开用户与使用 Vue Router 路由的频道的连接?
谢谢。
我相信 Vue Router 可能出于性能原因使组件实例保持活动状态。因此,即使在组件之间进行路由,websocket 通道仍然可以连接。
为了避免这个问题,您可以使用Vue的组件destroyed
方法手动离开频道。
由于您使用的是Laravel的Echo,您需要做的就是:Echo.leave('channel-name')
...
methods: {
// ...
},
destroyed() {
Echo.leave('transaction.' + this.tid);
}