gpt4 book ai didi

javascript - 没有重复的服务器端事件

转载 作者:行者123 更新时间:2023-11-30 15:06:55 24 4
gpt4 key购买 nike

我正在尝试使用 PHP 和 MySQL 在网页上显示实时数据。

到目前为止,我能够从数据库中检索记录并每 3 秒显示一次。然而,相同的记录每 3 秒显示一次,直到插入新记录(即有重复记录)。

我想我需要在我的 while 循环中进行更多检查?

我无法检查唯一的 TimeStamp,因为会有多个记录具有相同的时间戳,这是完全有效的。SerialNo 字段是主要的、唯一的并且在每次插入后递增 1 - 也许我可以以某种方式使用它?

我的 PHP;

$query = "SELECT TimeStamp, CardNo, SerialNo FROM transactions WHERE TimeStamp < ? ORDER BY TimeStamp DESC LIMIT 1";

$time = date('Y-m-d H:i:s');
$stmt = $conn->prepare($query);
$stmt->bind_param("s", $time);
$stmt->execute();
$result = $stmt->get_result();

while($row = $result->fetch_assoc()) {
$cardNo = $row['CardNo'];
echo "retry: 3000\n\n"; // every 3 seconds
echo "data: ".$cardNo. ' '.$row['TimeStamp']. "\n\n"; // card no & timestamp
}

我的 HTML;

<script type="text/javascript">
window.onload = function(){
var source = new EventSource("data.php");
source.onmessage = function(event){
document.getElementById("result").innerHTML += "New transaction: " + event.data + "<br>";
};
};
</script>

HTML页面的数据输出示例(可以看到,输出了重复的);

New transaction: 12916064 2017-08-10 10:52:03
New transaction: 12916064 2017-08-10 10:52:03
New transaction: 12916064 2017-08-10 10:52:03
New transaction: 12916064 2017-08-10 10:52:03
New transaction: 12916064 2017-08-10 10:52:03
New transaction: 12916064 2017-08-10 10:52:03
New transaction: 02723884 2017-08-10 10:54:39
New transaction: 02723884 2017-08-10 10:54:39
New transaction: 02723884 2017-08-10 10:54:39
New transaction: 02723419 2017-08-10 10:54:49
New transaction: 02723419 2017-08-10 10:54:49
New transaction: 02723419 2017-08-10 10:54:49
New transaction: 02723419 2017-08-10 10:54:49
New transaction: 02730552 2017-08-10 10:55:01
New transaction: 02730552 2017-08-10 10:55:01

我希望它看起来像这样(没有重复);

New transaction: 12916064 2017-08-10 10:52:03
New transaction: 02723884 2017-08-10 10:54:39
New transaction: 02723419 2017-08-10 10:54:49
New transaction: 02730552 2017-08-10 10:55:01

感谢任何帮助。

最佳答案

你想要做的是(在 PHP 中):

如果 session 中的序列号(即这应该代表发送给客户端的最后一个序列号)与您的 $row 中的序列号相同,则不要将数据发送给客户端。

否则,如果它们不相同,则将数据发送到客户端,并在 session 中存储新的 SerialNo 以代替旧的。

像这样:

session_start(); //at the top of the script, ideally.

//...then, after your query, when you've fetched the row:
if ($_SESSION["lastSerialNo"] != $row["SerialNo"])
{
$_SESSION["lastSerialNo"] = $row["SerialNo"]; //store new "last" serial no in the session
//...send data to client as you do now
}
else
{
//probably don't need to do anything here, just don't send the data.
}

关于javascript - 没有重复的服务器端事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45610414/

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