websocket使用

文章介绍了如何在Element-UI框架下使用WebSocket进行实时通信,包括WebSocket连接的创建、错误处理、数据接收和发送、心跳检测等功能的实现代码示例。
摘要由CSDN通过智能技术生成

import { MessageBox } from 'element-ui'

export default class MyWebSocket {
  constructor(url) {
    if (typeof (WebSocket) === 'undefined') {
      MessageBox.alert('该浏览器不支持websocket!')
      return
    }
    this.Socket = null
    this.url = url
    this.setIntervalWesocketPush = null
    this.createSocket()
  }

  createSocket() {
    this.Socket && this.Socket.close()
    if (!this.Socket) {
      console.log(`建立${this.url}websocket连接`)
      this.Socket = new WebSocket(this.url)
      this.Socket.onopen = this.onopenWS
      this.Socket.onmessage = this.onmessageWS
      this.Socket.onerror = this.onerrorWS
      this.Socket.onclose = this.oncloseWS
    } else {
      console.log('websocket已连接')
    }
  }

  /** 打开WS之后发送心跳 */
  onopenWS() {
  // sendPing()
  }

  /** 连接失败重连 */
  onerrorWS() {
    this.Socket.close()
    clearInterval(this.setIntervalWesocketPush)
    console.log('连接失败重连中')
    if (this.Socket.readyState !== 3) {
      this.Socket = null
      this.createSocket()
    }
  }

  /** WS数据接收统一处理 */
  onmessageWS(e) {
    window.dispatchEvent(new CustomEvent('onmessageWS', {
      detail: {
        data: e.data
      }
    }))
  }

  /**
 * 发送数据但连接未建立时进行处理等待重发
 * @param {any} message 需要发送的数据
 */
  connecting(message) {
    setTimeout(() => {
      if (this.Socket.readyState === 0) {
        this.connecting(message)
      } else {
        this.Socket.send(JSON.stringify(message))
      }
    }, 1000)
  }

  /**
 * 发送数据
 * @param {any} message 需要发送的数据
 */
  sendWSPush(message) {
    if (this.Socket !== null && this.Socket.readyState === 3) {
      this.Socket.close()
      this.createSocket()
    } else if (this.Socket.readyState === 1) {
      this.Socket.send(JSON.stringify(message))
    } else if (this.Socket.readyState === 0) {
      this.connecting(message)
    }
  }

  /** 断开重连 */
  oncloseWS() {
    clearInterval(this.setIntervalWesocketPush)
    console.log('websocket已断开....正在尝试重连')
    if (this.Socket.readyState !== 2) {
      this.Socket = null
      this.createSocket()
    }
  }

  /** 发送心跳
 * @param {number} time 心跳间隔毫秒 默认5000
 * @param {string} ping 心跳名称 默认字符串ping
 */
  sendPing(time = 5000, ping = 'ping') {
    clearInterval(this.setIntervalWesocketPush)
    this.Socket.send(ping)
    this.setIntervalWesocketPush = setInterval(() => {
      this.Socket.send(ping)
    }, time)
  }
}

2.使用

import MyWebSocket from '@/utils/websocket'

initSocket() {
    this.dySocket = new MyWebSocket('ws://localhost:13888')
    window.WSocket = {
      dySocket: this.dySocket,
     }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值