Failed to construct 'WebSocket': The URL's scheme must be either 'ws' or 'wss'. 'http' is not allowed.
时间: 2023-09-09 08:06:52 浏览: 427
java.sql.SQLException: 内部错误: Unable to construct a Datum from the specified input
5星 · 资源好评率100%
这个错误提示是因为你在使用 WebSocket 连接时使用了 http 协议,而 WebSocket 只支持 ws 和 wss 协议。你需要将 http 改为 ws 或 wss,比如:
```javascript
const socket = new WebSocket('ws://example.com');
```
或者
```javascript
const socket = new WebSocket('wss://example.com');
```
请注意,如果你使用的是 https 协议,则应该使用 wss 协议。
阅读全文