# qa.sendSocketMessage(Object object)

通过已连接成功的WebSocket连接发送数据

注意:需要先qa.connectSocket,并在qa.onSocketOpen接收到回调之后才能发送。

# 参数

# Object object

属性 类型
默认值
必填
说明
data string/ArrayBuffer 发送的内容
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

# 示例代码

let socketOpen = false
const socketMsgQueue = []
qa.connectSocket({
  url: 'test.php'
})

qa.onSocketOpen(function(res) {
  socketOpen = true
  for (let i = 0; i < socketMsgQueue.length; i++) {
    sendSocketMessage(socketMsgQueue[i])
  }
  socketMsgQueue = []
})

function sendSocketMessage(msg) {
  if (socketOpen) {
    qa.sendSocketMessage({
      data: msg
    })
  } else {
    socketMsgQueue.push(msg)
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

在线客服