1、main.js文件:
Vue.prototype.ws=new WebSocket('ws://192.168.124.189:8888/ws');
2、index.vue中使用:
mounted(){
this.ws.onopen =function(){
console.log("websocket打开")
};
}
index.vue的onopen事件为什么不执行?
1、main.js文件:
Vue.prototype.ws=new WebSocket('ws://192.168.124.189:8888/ws');
2、index.vue中使用:
mounted(){
this.ws.onopen =function(){
console.log("websocket打开")
};
}
index.vue的onopen事件为什么不执行?
先打印看看 this.es有没有值。你 WebSocket是原生的还是引入了插件 需要调用main.js 里Vue.use(ws)看看