嗨,我被困在我的setTimeout函数上。我想要做的是循环我的setTimeout为我的检索对话功能..我在setInterval上尝试了这个但是使用setInterval是我的应用程序的坏消息,这就是为什么我切换到setTimeout ..但我似乎无法弄清楚如何使setTimeout在完成加载后再次工作..这是我到目前为止所尝试的并且仍然试图让它在此刻工作..
使用Javascript:
id = setTimeout(function()
{
$.ajax(
{
url: "includes/handlechat.php",
type: "GET",
data: data,
dataType: 'json',
success: function(result)
{
$("#clog").empty();
$.each(result, function(rowKey, row)
{
$("#clog")
.append('<p ><h4>'+ row.username +':</h4>' + row.message_content + '</p>' );
});
},
complete: function ()
{
clearTimeout(id);
}
})
}, 1101);
有任何提示或建议吗?
答案 0 :(得分:6)
将代码放入函数中并在成功或完整处理程序中调用它:
function load() {
setTimeout(function () {
$.ajax({
url: "includes/handlechat.php",
type: "GET",
data: data,
dataType: 'json',
success: function (result) {
$("#clog").empty();
$.each(result, function (rowKey, row) {
$("#clog").append('<p ><h4>' + row.username + ':</h4>' + row.message_content + '</p>');
});
},
complete: load
});
}, 1101);
}
load();
您还可以使用IIFE来避免在当前环境中创建另一个绑定:
(function load() {
// setTimeout here
}());
答案 1 :(得分:2)
我做这样的事情。
function getChatMessages() {
$.ajax({
// your params here
}).done(function (data) {
// do something with the data
}).always(function () {
window.setTimeout(getChatMessages, 1101);
});
}
getChatMessages();
&#39;总是&#39;是这样你就不会在获取消息时出现错误(超时,某种500等)。