JavaScript 连接 websocket 服务

function TWebSocket(opt) {
    var that = this;
    that.isWS = !!window.WebSocket;
    that.isOpen = false;
    that.autoConnect = false;
    that.options = opt;
    if (that.options.reconnect) that.autoConnect = true;
    that._connect.call(that);
}

TWebSocket.prototype.send = function (e) {
    var that = this;
    if (that.isOpen) {
        that._WS.send(e);
        return true;
    }
    return false;
}
TWebSocket.prototype._connect = function () {
    var that = this;
    try {
        that._WS = new WebSocket(that.options.url);
        that.isWS = true;
    } catch (_) {
        that._WS = null;
    }
    if (that.isWS) {
        that._WS.onopen = function (e) {
            that.isOpen = true;
            if (that.options.onopen) {
                that.options.onopen.call(that, e);
            }
        }
        that._WS.onclose = function (e) {
            that.isOpen = false;
            if (that.autoConnect) that.reconnect();
            if (that.options.onclose) {
                that.options.onclose.call(that, e);
            }
        }
        that._WS.onerror = function (e) {
            that.isOpen = false;
            if (that.autoConnect) that.reconnect();
            if (that.options.onerror) {
                that.options.onerror.call(that, e);
            }
        }
        that._WS.onmessage = function (e) {
            if (that.options.onmessage) {
                that.options.onmessage.call(that, e);
            }
        }
    }
}
TWebSocket.prototype.reconnect = function (t) {
    var that = this;
    if (!that.isOpen) {
        if (that._RCT) clearTimeout(that._RCT);
        that._RCT=setTimeout(function () {
            that._connect.call(that);
        }, isNaN(t) ? 5000 : t * 1000)
    }
}
var myWs = new TWebSocket({
            url: "ws://127.0.0.1:8132",
            reconnect: true,//自动重连
            onerror:function(e){
            },
            onmessage: function (msg) {
                console.log(msg.data);
            }
        });

myWs.send("send data");

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值