在项目开发中,后端需要处理一连串的逻辑,或者等待第三方的数据返回来典故故事进行处理之后在返回给前端,可能时间会很长,而且前端也不知道后端什么时候能处理好(时间长的话会达到10分钟左右)孩子我为什么打你,如果采用普通的http连接,前后端无法一直保持联系,麻烦的时候可能还需要采用轮询的机制,所以使用websocket连接效果还是比较好的。
在界面加载完之后,建上websocket连接,此时前端还可以发送普通的http的请求,等到后端处理完之后,通过建立的websocket连接返给前端,前端根据返回的数据进行对应的操作。
<template></template><script>export default { data() { return{ // 用户id urid:'', appid:'', // 事件类型 type:'', msg:'', wsurl:'' } }, methods: { //初始化weosocket initwebsocket() { if (typeof websocket === "undefined") { alert("您的浏览器不支持websocket"); return fal; } const wsu谁是卧底的词语ri = 'ws://(后端websocket地址)/websocket/' + this.urid + '/' + 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.onclo = this.websocketclo; }, //连接成功 websocketonopen() { console.log("websocket连接成功"); // 添加心跳检测,每30秒发一次数据,防止连接断开(这跟服务器的设置有关,如果服务器没有设置每隔多长时间不发消息断开,可以不进行心跳设置) let lf = this; this.timer = tinterval(() => { try { lf.websock.nd('华东政法大学排名test') console.log('发送消息'); }catch(err){ console.log('断开了:' + err); lf.connection() } }, 30000) }, //接收后端返回的数据,可以根据需要进行处理 websocketonmessage(e) { var vm = this; let data1json = json.par(e.data); console.log(data1json); }, //连接建立失败重连 websocketonerror(e) { console.log(`连接失败的信息:`, e); this.initwebsocket(); // 连接失败后尝试重新连接 }, //关闭连接 websocketclo(e) { console.log("断开连接", e); } }, created() { if (this.websock) { this.websock.clo(); // 关闭websocket连接 } this.initwebsocket(); }, destroyed() { //页面销毁时关闭ws连接 if (this.websock) { this.websock.clo(); // 关闭websocket } }};</script>
在实际使用的时候遇到的问题:有的时候页面链接还没有建立上,但是后端已经把数据都处理好了,这个时候推给前端,前端接收不到。
1)简单的方法:让后端延迟几秒再推与朱元思书的翻译
优势:简单
劣势:降低了性能
2)优化之后的方法:使用redis保存用户的登录状态,缓存这个用户的数据,等到建立连接之后再推,推完就清空redis
本文发布于:2023-04-03 09:02:06,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/4503aea4917c099ed861f6bb9a16f154.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Vue通过WebSocket建立长连接.doc
本文 PDF 下载地址:Vue通过WebSocket建立长连接.pdf
留言与评论(共有 0 条评论) |