我需要從服務器端連續調用一個API,以便它每秒24/7被調用。我怎樣才能做到這一點?如何在Node js/Express js中從服務器端連續調用API本身?
我嘗試它在server.js中顯示如下,但得到'TypeError:request.put不是一個函數'。
app.get('/',function(request,response){
setInterval(function(){
request.put('http://localhost:4242/changepaidstatus', function(error,response){
if (error){
console.log(error);
}
else{
console.log(response);
}
});
}, 1000);
});
[調用函數每60秒](http://stackoverflow.com/questions/3138756/calling-a-function-every-60-seconds) –