2

我正在使用 PHP (CodeIgniter) 编写 Web 服务。我尝试遵循几个关于 HTML5 中服务器发送事件的基本教程。

但是,我无法运行它们中的任何一个。
正如预期的那样(每 3 秒),我收到了正确的标题,但我没有收到任何数据。
可能是 WAMP 配置或 CodeIgniter 问题?


控制器方法的代码:

public function sse() {
        header('Content-Type: text/event-stream');
        header('Cache-Control: no-cache');
        $time = date('r');
        echo "data: The server time is: {$time}\n\n";
        flush();
    }

视图的代码(部分):

<div id="play"> msg </div>

<script>
    var source = new EventSource("<?php echo site_url('play/sse') ?>");
    source.onmessage=function(event) {
        document.getElementById("play").innerHTML+=event.data + "<br>";
    };
</script>

HTTP 标头:

Request URL:http://localhost/index.php/play/sse
Request Method:GET
Status Code:200 OK
Request Headersview source
Accept:text/event-stream
Accept-Encoding:gzip,deflate,sdch
Accept-Language:pl-PL,pl;q=0.8,en-US;q=0.6,en;q=0.4
Cache-Control:no-cache
Connection:keep-alive
Cookie: ...
4

1 回答 1

0

我遇到了同样的问题,我通过在标题和响应/结果中用双引号替换单引号来解决它。

   header("Content-type: text/event-stream");
   header("Connection: Keep-alive");
   header("Cache-Control: no-cache");
   echo "retry:1000\n";
   $result = "data:".json_encode($result)."\n\n"; 
于 2017-04-05T13:00:55.317 回答