微信小程序 SocketIO 實例講解
更新時間:2016年10月13日 09:52:14 投稿:lqh
這篇文章主要介紹了微信小程序 SocketIO 的相關資料,這里給大家提供了一個簡單實例,需要的朋友可以參考下
微信小程序 ScoketIO 簡單實例:
現在好的人在搞微信小程序,ScoketIO 是微信的網絡通信,它的重要性不言而喻,這里給大家講講如何使用以及注意事項!
微信小程序 的SocketIO 實現,基于CFETram 的實現基礎上完善
const emitter = require('./emitter.js');
/** socket.io 協(xié)議常量 */
var packets = {
open: 0 // non-ws
, close: 1 // non-ws
, ping: 2
, pong: 3
, message: 4
, upgrade: 5
, noop: 6
};
var events = {
CONNECT: 0,
DISCONNECT: 1,
EVENT: 2,
ACK: 3,
ERROR: 4,
BINARY_EVENT: 5,
BINARY_ACK: 6
};
const PING_CHECK_INTERVAL = 2000;
class WxSocketIO {
connect(url) {
return new Promise((resolve, reject) => {
wx.onSocketOpen((response) => {
this.isConnected = true;
//this.ping();
resolve(response);
});
wx.onSocketError(error => {
if (this.isConnected) {
this.fire('error', error);
} else {
reject(error);
}
});
wx.onSocketMessage(message => this._handleMessage(message));
wx.onSocketClose(result => {
if (this.isConnected) {
this.fire('error', new Error("The websocket was closed by server"));
} else {
this.fire('close');
}
this.isConnected = false;
this.destory();
});
wx.connectSocket({
url: `${url}/?EIO=3&transport=websocket`
});
});
}
ping() {
setTimeout(() => {
if (!this.isConnected) return;
wx.sendSocketMessage({
data: [packets.ping, 'probe'].join('')
});
}, PING_CHECK_INTERVAL);
}
close() {
return new Promise((resolve, reject) => {
if (this.isConnected) {
this.isConnected = false;
wx.onSocketClose(resolve);
wx.closeSocket();
} else {
reject(new Error('socket is not connected'));
}
});
}
emit(type, ...params) {
const data = [type, ...params];
wx.sendSocketMessage({
data: [packets.message, events.EVENT, JSON.stringify(data)].join("")
});
}
destory() {
this.removeAllListeners();
}
_handleMessage({ data }) {
const [match, packet, event, content] = /^(\d)(\d?)(.*)$/.exec(data);
if (+event === events.EVENT) {
switch (+packet) {
case packets.message:
let pack;
try {
pack = JSON.parse(content);
} catch (error) {
console.error('解析 ws 數據包失?。?)
console.error(error);
}
const [type, ...params] = pack;
this.fire(type, ...params);
break;
}
}
else if (+packet == packets.pong) {
this.ping();
}
}
};
emitter.setup(WxSocketIO.prototype);
module.exports = WxSocketIO;
DEMO
項目附了一個微信小程序的DEMO 項目演示了接入 Scoket.IO 官方的演示聊天室,以便方便測試,關于詳細用法還請參考官方文檔。
How to use
const opts = {}
const socket = this.globalData.socket = new WxSocketIO()
socket.connect('ws://chat.socket.io', opts)
.then(_ => {
console.info('App::WxSocketIO::onOpen')
console.info('App:onShow:', that.globalData)
})
.catch(err => {
console.error('App::WxSocketIO::onError', err)
})
其中socket.connect(ws_url, opts)中,opts目前可選值是path,用來指定使用socket.io時默認的path,比如設置opts為下列值:
{
query: 'fanweixiao',
with: 'mia&una',
}
完整實例地址:https://github.com/fanweixiao/wxapp-socket-io
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
相關文章
Js原型鏈constructor prototype __proto__屬性實例詳解
這篇文章主要介紹了Js原型鏈constructor prototype __proto__屬性實例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-10-10

