前端怎么用 EventSource? EventSource怎么配置请求头及加参数? EventSourcePolyfill使用方法

前端怎么用 EventSource? EventSource怎么配置请求头及加参数? EventSourcePolyfill使用方法

码农世界 2024-05-22 前端 60 次浏览 0个评论

EventSource

EventSource 接口是 web 内容与服务器发送事件通信的接口。

一个 EventSource 实例会对 HTTP 服务器开启一个持久化的连接,以 text/event-stream 格式发送事件,此连接会一直保持开启直到通过调用 EventSource.close() 关闭。

EventSource 服务器发送事件是单向的。数据消息只能从服务端发送到客户端。

如果想了解更多请查看 EventSource 文档

EventSource使用方式

这里其实和webSocket 使用方式其实很像

这里需要注意 我在网上查了说参数可以配置headers(请求头) 实际使用的时候我这边传入请求头是没有生效(可能是我操作有误吧)

首先先安装EventSource
 npm install eventsource

示例代码

//创建一个新的 EventSource 对象的同时,你可以指定一个接受事件的 URI
// 如果需要加参数的话是在url 后面拼接参数 sysm/user/1
  const eventSource = new EventSource('url')
  //与事件源的连接刚打开时触发
  eventSource.onopen = function (e) {
        console.log(e, "连接刚打开时触发");
      };
    /*
       * message:后端返回信息,格式可以和后端协商
       */
      eventSource.onmessage = function (e) {
        console.log(e,'后端返回信息,格式可以和后端协商');
      };
       /*
       * error:错误(可能是断开,可能是后端返回的信息)
       */
      eventSource.onerror = function (e) {
        console.log(e, "连接无法打开时触发");
        eventSource.close(); // 关闭连接
        setTimeout(() => {
        //关闭连接后重新调用 
        }, 5000);
      };
      // 关闭连接
    // eventSource.close();   

EventSourcePolyfill 是EventSource封装的一个方法,EventSourcePolyfill 可以配置请求头

EventSourcePolyfill可以配置请求头 目前我EventSource配置请求头不生效所以才用 EventSourcePolyfill

首先先安装 EventSourcePolyfill

 npm install event-source-polyfill

引用 EventSourcePolyfill

import { EventSourcePolyfill } from "event-source-polyfill";

示例代码

// 如果需要加参数的话是在url 后面拼接参数 sysm/user/1
 const eventSource = new EventSourcePolyfill(
        `${process.env.VUE_APP_BASE_API}/sysm/user/1`,
        {
          heartbeatTimeout:3*60*1000,//这是自定义配置请求超时时间  默认是4500ms(印象中是)
          headers: {
            Authorization: "Bearer " + 'token',
          },
        }
      );
      /*
       * open:订阅成功(和后端连接成功)
       */
      eventSource.onopen = function (e) {
        console.log(e, "连接刚打开时触发");
      };
      /*
       * message:后端返回信息,格式可以和后端协商
       */
      eventSource.onmessage = function (e) {
        console.log(e,'后端返回信息,格式可以和后端协商');
        const data = JSON.parse(e.data) || {};//这里后端返回的是字符串所以目前我这边有转换
      };
      /*
       * error:错误(可能是断开,可能是后端返回的信息)
       */
      eventSource.onerror = function (e) {
        console.log(e, "连接无法打开时触发");
        eventSource.close(); // 关闭连接
        setTimeout(() => {
        }, 5000);
      };
      // 需要关闭了
      // eventSource.close();

转载请注明来自码农世界,本文标题:《前端怎么用 EventSource? EventSource怎么配置请求头及加参数? EventSourcePolyfill使用方法》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,60人围观)参与讨论

还没有评论,来说两句吧...

Top