本文介绍了边缘、Internet Explorer 中新 WebSocket 的语法错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我觉得我快疯了.
我使用 javaScript 在端口 443 上建立 WebSocket 连接.
I use javaScript to make a WebSocket connection on port 443.
问题在于,WebSocket 声明仅在 Edge 和 Internet Explorer 浏览器上引发 SyntaxError,在 Chrome 和 Firefox 等其他浏览器上它运行良好.
The problem is that the WebSocket declaration is throwing a SyntaxError only on edge and internet explorer browsers, on other browsers like Chrome and Firefox it works perfectly.
我使用的代码:
var Connection;
Connection = new WebSocket("ws:/127.0.0.1:443");
有人知道我做错了什么吗?
Does someone knows what am I doing wrong?
推荐答案
改为:
var connection = new WebSocket("ws://127.0.0.1:443");
这篇关于边缘、Internet Explorer 中新 WebSocket 的语法错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!