未捕获的 InvalidStateError:无法在“WebSocket"上执行“发送":仍处于连接状态 [英] Uncaught InvalidStateError: Failed to execute 'send' on 'WebSocket': Still in CONNECTING state

查看:81
本文介绍了未捕获的 InvalidStateError:无法在“WebSocket"上执行“发送":仍处于连接状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我的页面加载时,我尝试向服务器发送一条消息以启动连接,但它不起作用.此脚本块靠近我的文件顶部:

When my page loads, I try to send a message to the server to initiate a connection, but it's not working. This script block is near the top of my file:

var connection = new WrapperWS();
connection.ident();
// var autoIdent = window.addEventListener('load', connection.ident(), false);

大多数时候,我看到标题中的错误:

Most of the time, I see the error in the title:

未捕获的 InvalidStateError:无法在WebSocket"上执行发送":仍处于连接状态

Uncaught InvalidStateError: Failed to execute 'send' on 'WebSocket': Still in CONNECTING state

所以我尝试 catch 异常,如下所示,但现在看来 InvalidStateError 未定义并且产生 ReferenceError>.

So I tried to catch the exception, as you can see below, but now it seems InvalidStateError is not defined and that produces a ReferenceError.

这是我的 websocket 连接的包装对象:

Here's the wrapper object for my websocket connection:

// Define WrapperWS

function WrapperWS() {
    if ("WebSocket" in window) {
        var ws = new WebSocket("ws://server:8000/");
        var self = this;

        ws.onopen = function () {
            console.log("Opening a connection...");
            window.identified = false;
        };
        ws.onclose = function (evt) {
            console.log("I'm sorry. Bye!");
        };
        ws.onmessage = function (evt) {
            // handle messages here
        };
        ws.onerror = function (evt) {
            console.log("ERR: " + evt.data);
        };

        this.write = function () {
            if (!window.identified) {
                connection.ident();
                console.debug("Wasn't identified earlier. It is now.");
            }
            ws.send(theText.value);
        };

        this.ident = function () {
            var session = "Test";
            try {
                ws.send(session);
            } catch (error) {
                if (error instanceof InvalidStateError) {
                    // possibly still 'CONNECTING'
                    if (ws.readyState !== 1) {
                        var waitSend = setInterval(ws.send(session), 1000);
                    }
                }
            }
        window.identified = true;
            theText.value = "Hello!";
            say.click();
            theText.disabled = false;
        };

    };

}

我正在 Ubuntu 上使用 Chromium 进行测试.

I am testing using Chromium on Ubuntu.

推荐答案

您可以通过等待 readyState 为 1 的代理函数发送消息.

You could send messages via a proxy function that waits for the readyState to be 1.

this.send = function (message, callback) {
    this.waitForConnection(function () {
        ws.send(message);
        if (typeof callback !== 'undefined') {
          callback();
        }
    }, 1000);
};

this.waitForConnection = function (callback, interval) {
    if (ws.readyState === 1) {
        callback();
    } else {
        var that = this;
        // optional: implement backoff for interval here
        setTimeout(function () {
            that.waitForConnection(callback, interval);
        }, interval);
    }
};

然后使用this.send代替ws.send,并将后面应该运行的代码放在回调中:

Then use this.send in place of ws.send, and put the code that should be run afterwards in a callback:

this.ident = function () {
    var session = "Test";
    this.send(session, function () {
        window.identified = true;
        theText.value = "Hello!";
        say.click();
        theText.disabled = false;
    });
};

要获得更精简的内容,您可以查看promises.

For something more streamlined you could look into promises.

这篇关于未捕获的 InvalidStateError:无法在“WebSocket"上执行“发送":仍处于连接状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆