vue前端后端实现WebScoket 即时通讯和主动断开链接

该文章展示了如何在Vue前端应用中使用WebSocket进行即时通讯,并实现心跳检测、主动断开连接和重连机制。后端使用Node.js的ws库创建WebSocket服务器,监听连接和消息,模拟数据传输并触发前端断开连接。
摘要由CSDN通过智能技术生成

vue前端后端实现WebScoket 即时通讯和主动断开链接

前端

code.vue

<template>
  <div>
    <div>about2</div>
  </div>
</template>

<script>
export default {
  name: 'About2',
  components: {},
  data() {
    return {
      lockReconnect: false, // 是否允许重新连接
      timeout: 2000, // 心跳间隔
      reTimeout: 1000 * 10, // 重连间隔
      timeoutTimer: null, // 心跳定时器
      reTimeoutTimer: null, // 重连定时器
      webSocket: null
    }
  },
  mounted() {
    this.createWebSocket()
  },
  methods: {
    // 检查心跳包的开始
    heartCheckStart() {
      // 防止定时器重复定义,先清除再定义
      if (this.timeoutTimer) {
        clearTimeout(this.timeoutTimer)
        this.timeoutTimer = null
      }
      this.timeoutTimer = setTimeout(() => {
        try {
          this.webSocket.send('heartBeat')
        } catch {
          if (this.timeoutTimer) {
            clearTimeout(this.timeoutTimer)
            this.timeoutTimer = null
          }
        }
      }, this.timeout)
    },
    // 重置心跳包
    heartCheckReset() {
      clearTimeout(this.timeoutTimer)
      this.timeoutTimer = null
      this.heartCheckStart()
    },
    // 创建WebSocket
    createWebSocket() {
      // 建立webSoctket通道
      if (window && 'WebSocket' in window) {
        this.webSocket = new WebSocket('ws://localhost:5002')
        // this.webSocket = new WebSocket(`ws://${url}`);
      }
      // 链接成功 - 发送心跳包
      this.webSocket.onopen = () => {
        this.heartCheckStart()
      }
      // 链接失败的时候 重新链接
      this.webSocket.onerror = () => {
        this.reConnect()
      }
      // 链接成功后 - 拿到相应数据
      this.webSocket.onmessage = (event) => {
        console.log('响应数据-event', event.data)
        // // 数据加载进度条 100 主动断开webscoket
        if (JSON.parse(event.data) instanceof Object && JSON.parse(event.data).code === 0) {
          // console.log('关闭webscoket')
          this.webSocket.close()
          this.lockReconnect = false // 设置不可重连
          return
        } else {
          this.heartCheckReset()
        }
      }
      this.webSocket.onclose = (event) => {
        // console.log('连接已关闭...', event, 'event.code', event.code)
        if (event.code === 1005) return // code为1005时,主动断开连接,不再重连
        this.reConnect()
      }
    },
    // 重连
    reConnect() {
      if (this.lockReconnect) {
        return
      }
      this.lockReconnect = true
      // 没连接上会一直重连,设置延迟避免请求过多
      this.reTimeoutTimer && clearTimeout(this.reTimeoutTimer)
      this.reTimeoutTimer = setTimeout(() => {
        this.createWebSocket()
        this.lockReconnect = false
      }, this.reTimeout)
    }
  }
}
</script>
<style lang="scss" scoped></style>

效果

在这里插入图片描述

后端

  • 创建一个 demo文件夹
    • npm init
    • yarn ad ws
  • 运行脚本
    • node index.js

index.js

const WebScoket = require("ws");

const ws = new WebScoket.Server({
  port: 5002,
});
ws.on('connection',ws=>{
  console.log("server-connection");
  let progress = 0;
  let code = 200
  ws.on("message",msg=>{
    console.log("服务器接受的消息:",msg);
    setTimeout(()=>{
      progress += 20
    },500)
    console.log("progress", progress);
    if ( progress > 100 ) {
      code = 0 
    }
    let data = {
      code : code,
      data:[1,2,3],
      progress: progress,
    }
    // ws.send('HeartBeat--111')
    ws.send(JSON.stringify(data))
  })
  ws.send('链接已建立')
})
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值