gpt4 book ai didi

javascript - ajax函数自动重新加载

转载 作者:行者123 更新时间:2023-11-28 10:52:10 24 4
gpt4 key购买 nike

您好,我正在从 json 格式的 php 文件获取数据,一切正常。但是,我希望此函数每隔 3000 毫秒重新加载一次,从而更新数据。

如何实现这一目标?

function loadFbill(hsid)
{
// Display a loading icon in our display element
$('.list-item-display').html('<span><img src="img/progress.gif" /></span>');

// Request the JSON and process it
$.ajax({
type:'GET',
url:""+xhr_path+"js_on.php",
data:"hid="+hsid+"&subscribers=paid",
success:function(feed) {
// Create an empty array to store images
var thumbs = [];

// Loop through the items
for(var i=0, l=feed.response.length; i < l && i < 6; ++i)
{
// Manipulate the image to get thumb and medium sizes

var payee = feed.response[i].result_paid;
var transaction_m = feed.response[i].result_payment_details;
var ptime = feed.response[i].result_time;
var plan = feed.response[i].result_plan;
var payee_num = feed.response[i].result_num;
var localhs = feed.response[i].result_hs;
var transaction_date = feed.response[i].result_payment_date;
var diff_date = feed.response[i].result_time_diff;

// Add the new element to the array
thumbs.push("<div class=list-item><div class=list-datetime><div class=time>"+ptime+"</div></div><div class=list-info><img src=img/pesa/ps_"+transaction_m+".jpg height=28 width=28 class=img-circle img-thumbnail/></div><div class=list-text><a href=# class=list-text-name> "+payee+" </a><p>"+payee_num+" <span class=icon-calendar></span> "+transaction_date+" <span class=icon-calendar-empty></span>"+diff_date+"<span class=icon-globe></span> "+localhs+" </p></div><div class=list-controls> "+plan+"</div></div>");
}


// Display the thumbnails on the page
$('.list-item-display').html(""+thumbs.join('')+"");

// A function to add a lightbox effect
addLB();
},
dataType:'json'
});

}

最佳答案

您可以简单地将setTimeout添加到ajax请求回调函数中:

function loadFbill(hsid) {
// Display a loading icon in our display element
$('.list-item-display').html('<span><img src="img/progress.gif" /></span>');

// Request the JSON and process it
$.ajax({
type: 'GET',
url: "" + xhr_path + "js_on.php",
data: "hid=" + hsid + "&subscribers=paid",
success: function (feed) {

// ... all your code untouched

setTimeout(loadFbill, 3000); // <-- and reload again
},
dataType: 'json'
});

}

关于javascript - ajax函数自动重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31502797/

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