|  |  |  | 
|---|
|  |  |  | this.timeout = this.$route.query.timeout; | 
|---|
|  |  |  | // 防止用户多次连续点击发起请求,所以要先关闭上次的ws请求。 | 
|---|
|  |  |  | closeWebsocket(); | 
|---|
|  |  |  | console.log(this.id); | 
|---|
|  |  |  | const obj = { | 
|---|
|  |  |  | type: "text", | 
|---|
|  |  |  | userId: this.userid, | 
|---|
|  |  |  | 
|---|
|  |  |  | }; | 
|---|
|  |  |  | // 发起ws请求 | 
|---|
|  |  |  | sendWebsocket( | 
|---|
|  |  |  | "ws://192.168.2.10:8095/chat?userId="+this.userid, | 
|---|
|  |  |  | "ws://9.208.2.190:8095/chat?userId="+this.userid, | 
|---|
|  |  |  | obj, | 
|---|
|  |  |  | this.wsMessage, | 
|---|
|  |  |  | this.wsError | 
|---|
|  |  |  | 
|---|
|  |  |  | console.log(obj, "入参"); | 
|---|
|  |  |  | // 发起ws请求 | 
|---|
|  |  |  | sendWebsocket( | 
|---|
|  |  |  | "ws://192.168.2.10:8095/chat?userId="+this.userid, | 
|---|
|  |  |  | "ws://9.208.2.190:8095/chat?userId="+this.userid, | 
|---|
|  |  |  | obj, | 
|---|
|  |  |  | this.wsMessage, | 
|---|
|  |  |  | this.wsError | 
|---|