继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Vue中使用websocket的正确使用方法

PIPIONE
关注TA
已关注
手记 921
粉丝 147
获赞 701

第一次使用websocket就是需要在vue中去使用他,在网上搜索了很多如何在vue中使用的教程和示例,有些demo过于简单扩展性太差,有些存在bug

网上经常被搜索到的一个答案是这个https://blog.csdn.net/niyuelin1990/article/details/78062139#commentsedit,但是这个答案中在解决websocket未开启和正在开启状态的处理方式是使用setTimeout去假定异步的状态,这个处理方式是存在问题的,于是我在这篇文章的基础上做出了一些修改,通过在onopen事件和onerror事件中处理websocket未开启和正在开启状态的数据发送问题

目前使用到现在没有出现什么问题,复制即用

<template>
  <div class="test">

  </div></template><script>
  export default {    name : 'test',
    data() {      return {        websock: null,
      }
    },
    created() {      this.initWebSocket();
    },
    destroyed() {      this.websock.close() //离开路由之后断开websocket连接
    },    methods: {
      initWebSocket(){ //初始化weosocket
        const wsuri = "ws://127.0.0.1:8080";        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方法发送数据
        let actions = {"test":"12345"};        this.websocketsend(JSON.stringify(actions));
      },
      websocketonerror(){//连接建立失败重连
        this.initWebSocket();
      },
      websocketonmessage(e){ //数据接收
        const redata = JSON.parse(e.data);
      },
      websocketsend(Data){//数据发送
        this.websock.send(Data);
      },
      websocketclose(e){  //关闭
        console.log('断开连接',e);
      },
    },
  }</script><style lang='less'>
 </style>



作者:Demo_Hu
链接:https://www.jianshu.com/p/9d8b2e42328c

打开App,阅读手记
5人推荐
发表评论
随时随地看视频慕课网APP

热门评论

请教个问题     如果跨域怎么处理呢    vue代理不行的 

请教个问题     如果跨域怎么处理呢    vue代理不行的 

 initWebSocket方法中this.websock. = this.websocket这个怎么处理

查看全部评论