0

Trigger.io アプリで forge.ajax を定期的に起動する方法の例はありますか? 一度発火し、静かに死ぬようです。Trigger.io は setTimeout を削除していますか、それとも停止していますか? 私はポール・アイリッシュから適応したこのテクニックを使用しています。

// 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);
    }
  });
})();

おそらくスコープの問題でしょうか?

アドバイスをありがとう。

4

1 に答える 1