vue中webscoket 主动断开连接
我们经常碰到这个需求 在客户端退出的时候 需要断开webscoketwebscoket里面提供了一个方法 webscoket.onclose这里是无法直接清除webscoket对象 必须使用onclose方法...
·
之前写的有问题这里纠正一下
initWebpack(){
const ws = "websocket的地址"
this.websocket = new WebSocket(ws)
this.websocket.onopen = this.websocket.open
this.websocket.onmesssge = this.websocket.onmesssge
}
在退出登录的时候关闭websocket就可以
// 退出登录
loginOut(){
this.close()
}
我们经常碰到这个需求 在客户端退出的时候 需要断开webscoket
webscoket里面提供了一个方法 webscoket.close
这里是无法直接清除webscoket对象 必须使用close方法
更多推荐
已为社区贡献9条内容
所有评论(0)