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