Vue通过WebSocket建立长连接
程序员文章站
2022-08-02 21:31:02
使用场景: 在项目开发中,后端需要处理一连串的逻辑,或者等待第三方的数据返回来进行处理之后在返回给前端,可能时间会很长,而且前端也不知道后端什么时候能处理好(时间长的话会达到10分钟左右),如果采用普通的HTTP连接,前后端无法一直保持联系,麻烦的时候可能还需要采用轮询的机制,所以使用WebSock ......
使用场景:
在项目开发中,后端需要处理一连串的逻辑,或者等待第三方的数据返回来进行处理之后在返回给前端,可能时间会很长,而且前端也不知道后端什么时候能处理好(时间长的话会达到10分钟左右),如果采用普通的http连接,前后端无法一直保持联系,麻烦的时候可能还需要采用轮询的机制,所以使用websocket连接效果还是比较好的。
使用时间:
在界面加载完之后,建上websocket连接,此时前端还可以发送普通的http的请求,等到后端处理完之后,通过建立的websocket连接返给前端,前端根据返回的数据进行对应的操作。
代码展示:
<template>
</template>
<script>
export default {
data() {
return{
// 用户id
userid:'',
appid:'',
// 事件类型
type:'',
msg:'',
wsurl:''
}
},
methods: {
//初始化weosocket
initwebsocket() {
if (typeof websocket === "undefined") {
alert("您的浏览器不支持websocket");
return false;
}
const wsuri = 'ws://(后端websocket地址)/websocket/' + this.userid + '/' + this.appid // websocket地址
this.websock = new websocket(wsuri);
this.websock.onopen = this.websocketonopen;
this.websock.onmessage = this.websocketonmessage;
this.websock.onerror = this.websocketonerror;
this.websock.onclose = this.websocketclose;
},
//连接成功
websocketonopen() {
console.log("websocket连接成功");
// 添加心跳检测,每30秒发一次数据,防止连接断开(这跟服务器的设置有关,如果服务器没有设置每隔多长时间不发消息断开,可以不进行心跳设置)
let self = this;
this.timer = setinterval(() => {
try {
self.websock.send('test')
console.log('发送消息');
}catch(err){
console.log('断开了:' + err);
self.connection()
}
}, 30000)
},
//接收后端返回的数据,可以根据需要进行处理
websocketonmessage(e) {
var vm = this;
let data1json = json.parse(e.data);
console.log(data1json);
},
//连接建立失败重连
websocketonerror(e) {
console.log(`连接失败的信息:`, e);
this.initwebsocket(); // 连接失败后尝试重新连接
},
//关闭连接
websocketclose(e) {
console.log("断开连接", e);
}
},
created() {
if (this.websock) {
this.websock.close(); // 关闭websocket连接
}
this.initwebsocket();
},
destroyed() {
//页面销毁时关闭ws连接
if (this.websock) {
this.websock.close(); // 关闭websocket
}
}
};
</script>
问题回顾:
在实际使用的时候遇到的问题:有的时候页面链接还没有建立上,但是后端已经把数据都处理好了,这个时候推给前端,前端接收不到。
解决方案:
1)简单的方法:让后端延迟几秒再推
优势:简单
劣势:降低了性能
2)优化之后的方法:使用redis保存用户的登录状态,缓存这个用户的数据,等到建立连接之后再推,推完就清空redis
上一篇: 微信公众号快速涨粉,多种引流方式的秘诀
下一篇: 白蒿怎么做好吃,带您探索新的美食天地!