4

我已经在我的 Web 应用程序上实现了一个带有事件源的服务器发送事件。基本上在javascript中我的代码看起来像:

    var myEventSource;
    if (typeof(EventSource) !== "undefined" && !myJsIssetFunction(viridem.serverSideEvent.config.reindexProcessingEvent)) {
        myEventSource = new EventSource('/my/url/path.php?event=myevent');
        EventSource.onmessage = function(e) {
          [...] //Dealing with e.data that i received ...
        }
    }

在 PHP 方面,我有这样的东西:

<?php
  header('Content-Type: text/event-stream');
  header('Cache-Control: no-cache');
  header("Access-Control-Allow-Origin: *");

  //this or set_the_limit don't work but whatever I can deal without it
  ini_set('max_execution_time', 300);
  //ignore_user_abort(true); tried with true and false

  bool $mustQuit = false;

  while (!$mustQuit && connection_status() == CONNECTION_NORMAL) {
     if(connection_aborted()){
      exit();
     }
     [...] //doing some checkup

    if ($hasChange) {
      //Output stuffs
      echo 'data:';
      echo json_encode($result);
      echo "\n\n";
      ob_flush();
      flush();
      sleep(5);
    }

  }

从在以下位置找到的答案:PHP 事件源不断执行,“文本/事件流”标头应该使连接自动关闭,但在我的情况下它不会..

我确实在 window.onbeforeunload 事件中添加了一个 eventsource.close,但它没有关闭该事件。

window.onbeforeunload =  function() {
    myEventSource.close();
    myEventSource = null;
};

如果我查看浏览器的网络部分,我可以看到标题是(在添加最大循环 30 之后): Content-Type: text/event-stream;charset=UTF-8

响应标头:

访问控制允许来源:*

缓存控制:无缓存

连接:保持活动

内容类型:文本/事件流;字符集=UTF-8

服务器:Apache/2.4.18 (Ubuntu)

日期:2018 年 4 月 26 日星期四 20:29:46 GMT

到期:1981 年 11 月 19 日星期四 08:52:00 GMT

请求标头:

连接:保持活动

接受:文本/事件流

缓存控制:无缓存

注意:我确认脚本仍在使用日志运行,并通过始终递增的 bash (ps -ax | grep -c apache2) 检查 apache2 进程。

4

1 回答 1

3

感谢@LawrenceCherone 的帮助,我确实发现您需要“输出数据”才能使 connection_aborted 工作......

就我而言,我仅在需要时才输出数据...

通过增加

   if ($hasChange) {
      //Output stuffs
      echo 'data:';
      echo json_encode($result);
      echo "\n\n";
      ob_flush();
      flush();
      sleep(5);

    } else {
       echo 'data:';
       echo "\n\n";
       ob_flush();
       flush();
       if(connection_aborted()){
         exit();
       }
       sleep(5);
    }

connection_aborted 开始工作。

于 2018-04-26T22:00:26.730 回答