uni-socket封装

官方地址:https://uniapp.dcloud.net.cn/api/#websocket

class webSocketUtils {
  constructor(url, time, params) {
    this.socketTask = null;
    this.is_open_socket = false; //避免重复连接
    this.url = url;
    this.params = params ? params : null;
    this.connectNum = 1; // 重连次数
    //这个参数是防止重连失败之后onClose方法会重复执行reconnect方法,导致重连定时器出问题
    //连接并打开之后可重连,且只执行重连方法一次
    this.canReconnect = false; // 是否可以重连
    //心跳检测
    this.timeout = time ? time : 5000; //多少秒执行检测
    this.heartbeatInterval = null; //检测服务器端是否还活着
    this.reconnectTimeOut = null; //重连之后多久再次重连
    try {
      return this.connectSocketInit({
        data: '初始化连接-------',
        type: 'connectSocketInit',
      });
    } catch (e) {
      console.log('catch');
      this.reconnect();
    }
  }
  // 进入这个页面的时候创建websocket连接【整个页面随时使用】
  connectSocketInit (data) {
    this.data = data;
    console.log('this.url==', this.url);
    console.log('this.params==', this.params);
    this.socketTask = uni.connectSocket({
      url: this.url,
      success: () => {
        console.log('正准备建立websocket中...');
        uni.hideLoading();
        // 返回实例
        return this.socketTask;
      },
    });
    this.socketTask.onOpen((res) => {
      this.connectNum = 1;
      console.log('WebSocket连接正常!');
      this.send(data);
      clearInterval(this.reconnectTimeOut);
      clearInterval(this.heartbeatInterval);
      this.is_open_socket = true;
      this.canReconnect = true;
      this.start();
      // 注:只有连接正常打开中 ,才能正常收到消息
      this.socketTask.onMessage((e) => {
        // 字符串转json
        let res = JSON.parse(e.data);
        // 普通socket信息处理 TODO
        
      });
    });
    // 监听连接失败,这里代码我注释掉的原因是因为如果服务器关闭后,和下面的onclose方法一起发起重连操作,这样会导致重复连接
    uni.onSocketError((res) => {
      console.log('网络断开,请检查!');
      this.socketTask = null;
      this.is_open_socket = false;
      this.canReconnect = true;
      clearInterval(this.heartbeatInterval);
      clearInterval(this.reconnectTimeOut);
      if (this.connectNum <= 10) {
        uni.showToast({
          title: `网络连接失败,正尝试第${this.connectNum}次连接`,
          icon: 'none',
        });
        this.reconnect();
        this.connectNum += 1;
      } else {
        // uni.$emit('connectError');
        uni.showToast({
          title: `网络连接失败,请检查网络!`,
          icon: 'none',
        });
        this.connectNum = 1;
        this.canReconnect = false;
      }
    });
    // 这里仅是事件监听【如果socket关闭了会执行】
    this.socketTask.onClose(() => {
      this.socketTask = null;
      clearInterval(this.heartbeatInterval);
      clearInterval(this.reconnectTimeOut);

      this.is_open_socket = false;
      if (this.canReconnect) {
        this.reconnect();
        this.canReconnect = false;
      }
    });
  }
  // 主动关闭socket连接
  Close () {
    this.is_open_socket = true;
    this.canReconnect = false;
    if(this.socketTask){
      this.socketTask.close({
        success(res) {
          console.log('手动关闭成功');
        },
      });
    }
  }
  //发送消息
  send(data) {
    // console.log("data---------->", data);
    // 注:只有连接正常打开中 ,才能正常成功发送消息
    if (this.socketTask) {
      this.socketTask.send({
        data: JSON.stringify(data),
        async success() {
          // console.log("消息发送成功");
        },
      });
    }
  }
  //开启心跳检测
  start() {
    this.heartbeatInterval = setInterval(() => {
      this.send({
        data: '心跳检测',
        type: 'jc',
      });
    }, this.timeout);
  }
  //重新连接
  reconnect() {
    //停止发送心跳
    clearInterval(this.heartbeatInterval);
    //如果不是人为关闭的话,进行重连
    if (!this.is_open_socket) {
      console.log('进行重连');
      // this.canReconnect = true;
      this.reconnectTimeOut = setInterval(() => {
        this.connectSocketInit(this.data);
      }, this.timeout);
    }
  }
}
module.exports = webSocketUtils;

使用封装的websocket

1.引入

import webSocketUtils from '@/scoket/index.js'

2.调用
// 调用前先判断是否有socket正在进行 先关闭后链接
this.$socket?this.$socket.Close():null
this.$socket = new webSocketUtils(socketUrl, 5000)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值