微信小程序

微信小程序的websocket

2019-08-19  本文已影响0人  若风_412d

我也是找的👇的连接。足够了
链接
https://cloud.tencent.com/developer/article/1191083
官方:https://developers.weixin.qq.com/miniprogram/dev/api/network/websocket/wx.connectSocket.html

  wx.connectSocket({
    url: 'wss://xxx.com:4443/websocket',
    success:function(res){
      if (res.errMsg == "connectSocket:ok"){
        console.log("开始建立连接!");
      }
      else{
        console.log("建立连接失败!");
  //      wx.hideLoading();
      } 
    },
    fail:function(res){
      console.log(res);
    }
  })
上一篇 下一篇

猜你喜欢

热点阅读