编程语言
首页 > 编程语言> > 使用Server-Sent Events(和Javascript / PHP)的连接会立即停止

使用Server-Sent Events(和Javascript / PHP)的连接会立即停止

作者:互联网

昨天我潜入了Server-Sent活动,因为它们是为我正在创建的在线游戏创建新闻源的好方法.我有一个可以订阅我的feed的工作脚本,以及一个可以在几分钟内从MySql数据库中提取新闻源的脚本,但由于某种原因,它每次都会丢失连接…(并且每3秒重新连接一次,并没有任何结果比仅使用具有特定时间间隔的AJAX更好的例子)

我正在使用的javascript:

var source = new EventSource('http://theobg.itselementary.site50.net/gamefeed.php');
source.onmessage = function(e) {
    $("#gamefeed").html(e.data);
}

我正在使用的PHP:

<?php
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache');
header('Connection: keep-alive');

function sendMsg($id, $msg) {
  echo "id: $id" . PHP_EOL;
  echo "data: $msg" . PHP_EOL;
  echo PHP_EOL;
  ob_flush();
  flush();
}

//The file for connecting to my database here...
$gameid = 1;

$serverTime = time();
//Some mysql query to get the gamefeed from the database here..., gamefeed is structured like this: NEWS&OTHERNEWS&OLDERNEWS&EVENOLDERNEWS

sendMsg($serverTime, $gamefeed);

?>

我已经浏览了整个互联网,但一切似乎与我一起工作正常,除了连接没有“保持活着”,我不知道为什么那样……有人可以帮助我吗?

提前致谢,
Dalionzo

解决方法:

您需要检查数据并使用循环发送它.

<?php
while(true){
    //check for updates here
    if($updates){
        sendMsg($id,$data);
    }
    sleep(1);//loosen it up
}

此外,为了更容易编码,您可以尝试我的PHP库用于服务器发送的事件. Here

标签:php,javascript,server-sent-events
来源: https://codeday.me/bug/20190703/1371542.html