有没有人有一个如何在 Trigger.io 应用程序中定期触发 forge.ajax 的示例?它似乎开火了一次,然后默默地死去。Trigger.io 是删除 setTimeout 还是停止它?我正在使用这种改编自 Paul Irish 的技术。
// Wrap this function in a closure so we don't pollute the namespace
(function worker() {
forge.request.ajax({
url: 'ajax/test.html',
complete: function() {
// Schedule the next request when the current one's complete
setTimeout(worker, 5000);
}
});
})();
这可能是范围问题吗?
感谢您的任何建议。