gpt4 book ai didi

Javascript setInterval 函数不能重复

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

我想使用setInterval函数每10秒从其他网站获取一次数据。但不能每10s重复一次,只需运行第一次然后停止。

setInterval(hypothes("testtest"), 10000);

function hypothes(username){
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("demo").innerHTML = xhttp.responseText;
var Jsonfile= JSON.parse(xhttp.responseText);
console.log(Jsonfile.total);
console.log(username);
}
};
var url="https://hypothes.is/api/search?user=" + username + "&sort=created&order=asc";
xhttp.open("GET", url, true);
xhttp.send();
alert("test");
}

最佳答案

setInterval(function(){hypothesis("测试测试")}, 10000);

关于Javascript setInterval 函数不能重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34780292/

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