中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Vue中使用WebSocket建立長連接

發布時間:2021-04-17 17:12:16 來源:億速云 閱讀:1227 作者:Leah 欄目:web開發

怎么在Vue中使用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

看完上述內容,你們掌握怎么在Vue中使用WebSocket建立長連接的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

康定县| 汝阳县| 岚皋县| 土默特左旗| 麦盖提县| 巫溪县| 万宁市| 四子王旗| 沈丘县| 兴义市| 泾阳县| 神池县| 泗洪县| 阳高县| 灵台县| 屯留县| 张掖市| 鹰潭市| 横峰县| 康乐县| 河北区| 桦甸市| 乐亭县| 那曲县| 若尔盖县| 嘉鱼县| 祁门县| 邯郸市| 天津市| 广东省| 白山市| 丰都县| 五河县| 板桥市| 同心县| 邵阳县| 永清县| 天全县| 焦作市| 麻栗坡县| 南澳县|