热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

引用websocketvue初始化事件触发

初始化websocketinitWebsocket(wbUrl){this.websocketnewWebSocket(wbUrl);this.websocket.onopenth

//初始化websocket
initWebsocket(wbUrl){
this.websocket = new WebSocket(wbUrl);
this.websocket.Onopen= this.websocketOpen;
this.websocket.Onmessage= this.websocketMessage;
this.websocket.Onerror= this.websocketError;
},

//发送请求
websocketOpen(){
console.log('websocketOK');
this.websocket.send("自己的传值内容");
},

//websocket链接成功
websocketMessage(e){
console.log(e)
},
//建立
created(){
this.initWebsocket('你的websocketUrl'); 示例一
this.websocket.send("{ 'mark': '6' }"); 示例二
},
//销毁
destroyed(){
this.websocket.close();
}



推荐阅读
author-avatar
看吧看吧说你你不信
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有