gpt4 book ai didi

php - 如何在php mysql中实现反向ajax来获取数据库更新

转载 作者:行者123 更新时间:2023-11-30 00:45:32 25 4
gpt4 key购买 nike

我想在特定时间间隔或数据库更改时从数据库获取更新。这将持续影响客户端网页

最佳答案

你需要这样的东西

 function checkUpdate()
{
$.ajax({
url: "/explorer/checkUpdate",// Ajax url to get update
dataType:'json',
type:'post',
data:'',//data required to fetch update from db
success:function(msg){
if(msg.status)
{
// end update
}
else
{

//write code to update html element or add data to list.
setTimeout(checkAndDownload, 3000);
}
}
});

这将在一定时间间隔后继续 ping 服务器,以便您可以获取任何更新。

关于php - 如何在php mysql中实现反向ajax来获取数据库更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21397634/

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