浏览代码

【issues/I56UQP】WebSocket 连接发生错误

zhangdaiscott 2 年之前
父节点
当前提交
7b29a56cc0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/components/jeecg/JVxeTable/src/hooks/useWebSocket.ts

+ 1 - 1
src/components/jeecg/JVxeTable/src/hooks/useWebSocket.ts

@@ -58,7 +58,7 @@ const vs = {
       const url = `${domain}/vxeSocket/${userId}/${this.pageId}`
       //update-begin-author:taoyan date:2022-4-24 for: v2.4.6 的 websocket 服务端,存在性能和安全问题。 #3278
       let token = (getToken() || '') as string
-      this.ws = new WebSocket(url, [token])
+      this.ws = new WebSocket(url)
       //update-end-author:taoyan date:2022-4-24 for: v2.4.6 的 websocket 服务端,存在性能和安全问题。 #3278
       this.ws.onopen = this.on.open.bind(this)
       this.ws.onerror = this.on.error.bind(this)