我开始学习Javascript,我想和Zapier一起使用它来做一个Discord webhook。我希望它每隔X分钟在我的服务器中发送一条消息。那我该怎么写here?我认为它与SetInterval有关,但我不知道如何使用它:(
谢谢!
答案 0 :(得分:1)
var interval = 60000; //one minute in miliseconds
setInterval(function(){
/*code to execute once a minute*/
}, interval);
那就是它!
答案 1 :(得分:0)
你走在正确的轨道上。
onto:index
...... Zapier不支持, 怎么样:
var intervalMinutes = 5;// fill in whatever number here
setInterval(function(){
// your calling functions code here!
}, (intervalMinutes * 1000 * 60));