美文网首页微信小程序
微信小程序的websocket

微信小程序的websocket

作者: 若风_412d | 来源:发表于2019-08-19 13:42 被阅读0次

我也是找的👇的连接。足够了
链接
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);
    }
  })

相关文章

网友评论

    本文标题:微信小程序的websocket

    本文链接:https://www.haomeiwen.com/subject/vdhssctx.html