gpt4 book ai didi

javascript - HTML5 服务器发送的事件不是实时的?

转载 作者:行者123 更新时间:2023-11-27 23:07:15 25 4
gpt4 key购买 nike

我的代码应该每秒从服务器发送一个事件到客户端(我应该在 Firefox 控制台中看到它们定期出现)。但我同时获得了所有五个事件。为什么?

adm.php:

<html>
<head>
<script type='text/javascript'>
var evtSource;
function btnClick() {
evtSource = new EventSource('adm_sse.php');
evtSource.onmessage = function(e) {
console.log(e.data);
if (e.data == 'end') {
evtSource.close();
}
};
}
</script>
</head>
<body>
<button type='button' onclick='btnClick()'>Test SSE</button>
</body>
</html>

adm_sse.php:

<?php
header("Content-Type: text/event-stream");
//header('Cache-Control: no-cache'); // recommended to prevent caching of event data.
for ($i=0; $i<5; $i++) {
echo "data: $i (".date('d/m/Y H:i:s').")\n\n";
flush();
sleep(1);
}
echo "data:end\n\n";
flush();
?>

如果重要的话,我正在使用 Ubuntu 14.04 和 Apache。

最佳答案

我发现了一个example in the MDN它使用与您类似的 php 代码,但有一点小小的区别,它正在调用 ob_end_flush() .

关于javascript - HTML5 服务器发送的事件不是实时的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36483376/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com