vue使⽤websocket的⽅法实例分析
本⽂实例讲述了vue使⽤websocket的⽅法。分享给⼤家供⼤家参考,具体如下:
最近项⽬需要使⽤到websocket 但是框架是vue  ⽹上查阅很多资料 vue-websocket ⽼是连接不上索性就不适⽤封装的插件了,直接使⽤原⽣的websocket  我这边需求是只需要接受就好不需要发送代码如下:
爬坑之路:vue⾥⾯this指向问题
第⼀版使⽤原⽣js
mounted(){
console.log(this)----------------------------------------------------------this指向vue
this.initWebpack();
},
methods: {
initWebpack() {
let websocket = '';
if ('WebSocket' in window) {
websocket = new WebSocket("ws://192.168.1.99:8080/tv/websocket");
} else {
alert('当前浏览器 Not support websocket')
} //连接成功建⽴的回调⽅法 pen = function () { console.log("WebSocket连接成功")
console.log(this)----------------------------------------------------------this指向websocket
};
//接收到消息的回调⽅法
console.log(this)
console.log(event);
this.productinfos=JSON.parse(event.data);//websocket请求过来的是string 需要格式
if(demo.offsetHeight<demo1.offsetHeight){//内部⽐外部⾼度⼤的时候滑动
this.upScroll()//这是this指向websocket 所以没有此⽅法会报错
}
this.sliceArray() }
}
};
//连接关闭的回调⽅法 lose = function () {
前端websocket怎么用console.log("WebSocket连接关闭");
};
/
/连接发⽣错误的回调⽅法 r = function () {
console.log("WebSocket连接发⽣错误");
};
//监听窗⼝关闭事件,当窗⼝关闭时,主动去关闭websocket连接,防⽌连接还没断开就关闭窗⼝,server端会抛异常。
websocket.close();
//关闭WebSocket连接 };
},
sliceArray(){//截取数组的后四位 },
upScroll(){ },
}
第⼆版:正解
methods:{
initWebpack(){//初始化websocket
const wsuri = "ws地址";
this.websock = new WebSocket(wsuri);//这⾥⾯的this都指向vue
pen = this.websocketopen;
ssage = this.websocketonmessage;
lose = this.websocketclose;
r = this.websocketerror;
},
websocketopen(){//打开
console.log("WebSocket连接成功")
},
websocketonmessage(e){ //数据接收
console.log(e)
this.productinfos = JSON.parse(e.data);
},
websocketclose(){ //关闭
console.log("WebSocket关闭");
},
websocketerror(){ //失败
console.log("WebSocket连接失败");
},
}
pen的 this指向的是websocket 如果想要给vue⾥⾯的data⾥⾯的变量赋值就需要this指向vue 所以需要对websocket的⽅法赋值
希望本⽂所述对⼤家vue.js程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。