评论

uniapp插件uni-socket

最近研究socket成果分享

uni-socket

介绍

uni-app的socket完全封装

特点:

  1. 断线重连
  2. 自定义心跳
  3. 网络检测
  4. 断线消息队列
  5. debug

安装教程

npm i @i5920/uni-socket -S

使用说明

import uniSocket from "@i5920/uni-socket";

export default {
  globalData: {
    socket: null
  },
  onLaunch: function() {
    // 初始化socket配置
    this.initSocket();
  },
  onShow: function() {
    // 连接socket
    this.globalData.socket.initSocket();
  },
  methods:{
    initSocket(){
      let socket = new websocket({
          url: "ws://127.0.0.1:8080",
          timeout: 1 * 60 * 1000,   // 心跳时间间隔
          isSendHeart: true,        // 是否发送心跳
          heartData: "ping",        // 心跳数据
          isReconnection:true,      // 是否断线重连
          reConnectTime: 3000,      // 断线重连检测时间间隔
          params: {                 // 发送消息时如果时json则自动加上组合里面参数
            token: this.$store.state.user.TOKEN
          },
          debug: process.env.NODE_ENV === "development",  // debug
          onSocketOpen: header => {},
          onSocketMessage: data => {},
          onSocketError:res => {},
          onSocketClose:res => {}
      });
      this.globalData.socket = socket;
    }
  }
}

赞助二维码


最后一次编辑于  2019-12-30  
点赞 2
收藏
评论

2 个评论

  • 后来啊。
    后来啊。
    2021-12-06

    2021-12-06
    赞同
    回复
  • 吕小军
    吕小军
    2019-12-30

    dddddddddddddd

    2019-12-30
    赞同
    回复
登录 后发表内容