标签: 实时通信

1 篇文章

thumbnail
小程序实时通信
小程序的聊天功能需要实时通信; wx.connectSocket({     url: 'wss://60.205.228.30:2346', }) wx.onSocketOpen(function (res) {     console.log('WebSocket连接已打开!') }) wx.sendSocketMessage({     da…