以上代码不对,提示Uncaught DOMException: Failed to construct 'WebSocket': The subprotocol '[object Object]' is invalid. at XMLHttpRequest.xhr.onload (http://127.0.0.1:8848/virtualperson/virtualperson/demo1_transs/soundchat_response.html?chatname=yunconglong:541:20)
时间: 2023-11-22 14:54:21 浏览: 117
Uncaught DOMException:
这个错误提示是因为在构建 WebSocket 对象时,传入的子协议参数是一个 JavaScript 对象而不是字符串。可以检查一下代码中传入 WebSocket 构造函数的参数是否正确,应该是一个字符串,例如:
```
var ws = new WebSocket('ws://localhost:8080', 'chat');
```
其中第二个参数是子协议字符串,可以根据实际情况进行修改。如果仍然出现错误,可以提供更多代码以便我帮助你解决问题。
阅读全文