溫馨提示×

溫馨提示×

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

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

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

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

怎么在Vue中使用WebSocket建立長連接?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

<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秒發(fā)一次數(shù)據(jù),防止連接斷開(這跟服務(wù)器的設(shè)置有關(guān),如果服務(wù)器沒有設(shè)置每隔多長時間不發(fā)消息斷開,可以不進行心跳設(shè)置)
   let self = this;
   this.timer = setInterval(() => {
    try {
     self.websock.send('test')
     console.log('發(fā)送消息');
    }catch(err){
     console.log('斷開了:' + err);
     self.connection()
    }
   }, 30000)
  },
  //接收后端返回的數(shù)據(jù),可以根據(jù)需要進行處理
  websocketonmessage(e) {
   var vm = this;
   let data1Json = JSON.parse(e.data);
   console.log(data1Json);
  },
  //連接建立失敗重連
  websocketonerror(e) {
   console.log(`連接失敗的信息:`, e);
   this.initWebSocket(); // 連接失敗后嘗試重新連接
  },
  //關(guān)閉連接
  websocketclose(e) {
   console.log("斷開連接", e);
  }
 },
 created() {
  if (this.websock) {
   this.websock.close(); // 關(guān)閉websocket連接
  }
  this.initWebSocket();
 },
 destroyed() {
  //頁面銷毀時關(guān)閉ws連接
  if (this.websock) {
   this.websock.close(); // 關(guān)閉websocket
  }
 }
};
</script>

問題回顧:

  在實際使用的時候遇到的問題:有的時候頁面鏈接還沒有建立上,但是后端已經(jīng)把數(shù)據(jù)都處理好了,這個時候推給前端,前端接收不到。

解決方案:

  1)簡單的方法:讓后端延遲幾秒再推

  優(yōu)勢:簡單

  劣勢:降低了性能

  2)優(yōu)化之后的方法:使用Redis保存用戶的登錄狀態(tài),緩存這個用戶的數(shù)據(jù),等到建立連接之后再推,推完就清空Redis

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

向AI問一下細節(jié)

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

AI