Websocket API Program Mini WeChat


wx.connectSocket(OBJECT)


Buat sambungan WebSocket; applet WeChat hanya boleh mempunyai satu sambungan WebSocket pada masa yang sama Jika sambungan WebSocket wujud pada masa ini, sambungan akan ditutup secara automatik dan sambungan WebSocket baharu akan dibuat .

OBJEK perihalan parameter:

QQ截图20170208105757.png

Contoh kod:

wx.connectSocket({
  url:"test.php",
  data:{
    x:"",
    y:""
  },
  header:{ 
    'content-type': 'application/json'
  },
  method:"GET"
})

wx.onSocketOpen(CALLBACK)


buka sambungan

Kod contoh:

wx.connectSocket({
  url:"test.php"
});
wx.onSocketOpen(function(res){
  console.log("WebSocket连接已打开!")
})
wx .onSocketError (CALLBACK)

Dengar untuk kesilapan WebSocket

Contoh kod:

wx.connectSocket({
  url:"test.php"
});
wx.onSocketOpen(function(res){
  console.log("WebSocket连接已打开!")
})
wx.onSocketError(function(res){
  console.log("WebSocket连接打开失败,请检查!")
})
wx.sendSocketMessage(OBJEK)

Untuk menghantar data melalui WebSocket sahaja, anda perlu menyambungkan terlebih dahulu melalui WebSocket. dihantar selepas panggilan balik wx.onSocketOpen.

OBJEK perihalan parameter:

parameterparameterjenisdiperlukanpenerangan
jenisdiperlukanpenerangan


Apa yang perlu dihantar

Contoh Kod: wx.onSocketMessage(CALLBACK)CALLBACK Parameter pulangan:
var socketOpen = false;
var socketMsgQueue = []
wx.connectSocket({
  url:"test.php"
});

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

function sendSocketMessage(msg){
  if(socketOpen){
    wx.sendSocketMessage({
       data:msg
    });
  }else{
     socketMsgQueue.push(msg)
  }
}
Dengar acara mesej yang diterima oleh WebSocket daripada pelayan
Penerangan

data

String

Mesej dikembalikan oleh pelayan

🎜🎜🎜Contoh kod: 🎜🎜
wx.connectSocket({
  url:"test.php"
});

wx.onSocketMessage(function(res){
  console.log("收到服务器内容:" + res.data)
})
🎜wx.closeSocket()🎜🎜Close the Web.Socket🎜 CALLBACK)🎜 🎜Dengar Penutupan WebSocket🎜
wx.connectSocket({
  url:"test.php"
});

//注意这里有时序问题,
//如果wx.connectSocket还没回调wx.onSocketOpen,而先调用wx.closeSocket,那么就做不到关闭WebSocket的目的
//必须在WebSocket打开期间调用wx.closeSocket才能关闭
wx.onSocketOpen(function(){
  wx.closeSocket()
})

wx.onSocketClose(function(res){
  console.log("WebSocket 已关闭!")
})