webSocket 连接、心跳 封装

本文介绍了如何使用JavaScript实现WebSocket连接,包括WebSocket类的封装、构造方法、事件处理和重连机制。通过创建WebSocket对象并设置回调函数,实现在浏览器与服务器之间的双向数据传输,适合Web实时应用开发。
摘要由CSDN通过智能技术生成

封装 webSocket.js

class webSocket {
  
    constructor(options) {
        this.ws = null;
        this.url = options.url;
        this.status = null;
        this.isHeart = options.isHeart;
        this._timeout = 30000;
        this.callback = options.received;
        this.pingInterval = null;
        this.lockReconnect = false;
        this.isReconnec = options.isReconnec;

        this.data = options.data || '';
        this.connect();
    }

    connect() {
        if (this.lockReconnect) {
            return;
        }
        this.lockReconnect = true;
        this.createWebSocket();
        this.lockReconnect = false;
    }

    createWebSocket() {
        if ('WebSocket' in window) {
            this.ws = new WebSocket(this.url);
        } else if ('MozWebSocket' in window) {
            this.ws = new MozWebSocket(this.url);   
        } else {
            console.log('您的浏览器不支持websocket协议,建议使用新版谷歌、火狐等浏览器,请勿使用IE10以下浏览器')
        }
        this.initEvent();
    }

    initEvent() {
        this.ws.onopen = (e) => {
            this.status = 'open';
            if(this.isHeart) {
                this._heartCheck()
            }
            // 给后台发送数据
            if(this.data) {
                return this.ws.send(JSON.stringify(this.data))
            }
        }

        this.ws.onmessage = (e) => {

            if(typeof this.callback === 'function'){
                return this.callback(e.data)
            }else{
                console.log('no function')
            }
        }

        this.ws.onclose = (e) => {
            this._close(e)
        }
        this.onerror = (e) => {
            this._close(e)
        }
        
    }

    _resetHeart() {
        clearInterval(this.pingInterval)
        return this
    }

    _heartCheck() {
        this.pingInterval = setInterval(() => {
            if(this.ws.readyState === 1) {
                this.ws.send(JSON.stringify({type: 'ping'}))
            }
        }, this._timeout)
    }

    _close(e) {
        this._resetHeart()
        if(this.status !== 'close') {
            if(this.isReconnec){
                this.connect()
            }
        }else{
            console.log(e)
        }
    }

    close() {
        this.status = 'close'
        this._resetHeart()
        return this.ws.close();
    }

    send(data) {
        return this.ws.send(JSON.stringify(data))
    }
}

html 代码

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    123
</body>

<script src="/static/js/websocket.js"></script>

<script>
    const ws = new webSocket({
        url: 'ws://127.0.0.1:9543',
        isHeart: true,
        isReconnec: true,
        data: 13475869
    });
   
    // ws.send(456789)
    
    // 关闭
    window.onbeforeunload = function () {
        ws.close();
    }

</script>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wsy321123

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值