在 Firefox 中(至少),如果您按 ESC,它将关闭所有打开的 WebSockets 连接。我需要捕获该断开连接并在它再次可用时尝试重新连接。
这是我尝试实现的代码示例,但我想不出的任何东西都无法捕捉到错误并允许我优雅地处理它。
看看代码:http: //jsfiddle.net/w5aAK/
var url = "ws://echo.websocket.org";
try {
socket = window['MozWebSocket'] ? new MozWebSocket(url) : new WebSocket(url);
socket.onopen = function(){
console.log('Socket is now open.');
};
socket.onerror = function (error) {
console.error('There was an un-identified Web Socket error');
};
socket.onmessage = function (message) {
console.info("Message: %o", message.data);
};
} catch (e) {
console.error('Sorry, the web socket at "%s" is un-available', url);
}
setTimeout(function(){
socket.send("Hello World");
}, 1000);
打开控制台并观察输出。
我在这里做错了什么,还是因为连接超出了 JS 脚本的范围而无法运行?
任何输入都会有所帮助。
谢谢!