评论

socket的简单使用

socket的简单使用

   let webSocketTask = null;

  webSocketCon() {

    let that = this;

    that.webSocketTask = wx.connectSocket({

      url'wss://socket.xxxxx.com',

      header: {

        'content-type''application/json'

      },

      successres => {


      },

      failfail => {


      },

    });

    // 打开连接
    that.webSocketTask.onOpen(res => {


    });


    // 接收
    that.webSocketTask.onMessage(res => {
  

    });

    // 关闭
    that.webSocketTask.onClose(err => {


    })

    // 错误
    that.webSocketTask.onError(err => {

     
    });

  },
最后一次编辑于  2021-05-21  
点赞 0
收藏
评论
登录 后发表内容