
vue操作websocket initWebSocket() { //初始化weosocket let wsuri = "ws://106.13.98.231/chat/" + this.workId; this.websock = new WebSocket(wsuri); this.websock.onmessage = this.websocketonmessage; this.websock.onopen = this.websocketonopen; this.websock.onerror = this.websocketonerror; this.websock.onclose = this.websocketclose; }, // 开启时 websocketonopen() { //连接建立之后执行send方法发送数据 this.websocketsend(JSON.stringify(this.contentText)); }, // 连接错误时 websocketonerror() { //连接建立失败重连 this.initWebSocket(); }, //
