小程序websocket接入

参考文档:websocket文档

  1. 连接WebSocket服务器
wx.connectSocket({
 url: 'wss://XXXXx', // 小程序支持wss或https
  	success() {
  }
})
wx.onSocketOpen(() => {
	console.log('WebSocket连接打开')
 	heartCheck.reset().start()
})
  1. 向服务端发送消息确认链接成功(发送规则前后端需确认下)
wx.sendSocketMessage({
  data: JSON.stringify({
    "token": "eyJ0eXAiO"
  }),
  fail: (res) => {
    console.log(1111, res)
  }
})
  1. 接入服务端发送消息
 wx.onSocketMessage((res) => {
	console.log('收到服务端消息:' + res.data)
})
  1. WebSocket连接打开失败||WebSocket 已关闭处理
wx.onSocketError((res) => {
 	console.log('WebSocket连接打开失败')
})
 wx.onSocketClose((res) => {
	console.log('WebSocket 已关闭!')
  	that.reconnect()
})
  1. 同时记得接入心跳包防止中途断开

具体可参考这个demo:小程序demo

你可能感兴趣的:(小程序,websocket,网络协议)