Ajax调用持续运行

本文关键字:运行 调用 Ajax | 更新日期: 2023-09-27 18:08:22

我使用ajax来检查是否没有新的警报存储在我的sql数据库中。我将它设置为每30秒运行一次,但它却一直调用每秒检查数据库的函数。这是我的代码。

这是视图中的代码。"_Tasks"是我的局部视图,它将是将要更新的视图。我没有为成功返回做任何事情,因为它从来没有到达那个代码。

  @Html.Action("_Tasks")
           <script type="text/javascript">
                (function poll() {
                    $.ajax({                       
                        type: 'GET',
                        cache: false,
                        url: '@Url.Action("TasksRefresh")',
                        dataType: "json", 
                        complete: poll, 
                        timeout: 30000,
                        success: function (data) {
                            if (data.success == true)
                                alert("Hello");
                        } 
                    });
                })();
        </script>

这是在控制器

public JsonResult TasksRefresh()
        {
            var alerts = getAlerts();
            var cache = HttpRuntime.Cache["Tasks"];
            if ( cache == alerts)
            {
                return Json(new
                                {
                                    success = false,
                                });
            }
            else
            {
                return Json(new
                {
                    success = true,
                   // View = this.Re
                });
            }
        }

Ajax调用持续运行

试试这个:

(function poll() {
  $.ajax({                       
    type: 'GET',
    cache: false,
    url: '@Url.Action("TasksRefresh")',
    dataType: "json", 
    complete: function () { setTimeout(poll, 30000); }, // Changed, call poll again when 30s has pasted
    timeout: 30000, // This just says it fails if the request takes more than 30s
    success: function (data) {
      if (data.success == true)
        alert("Hello");
    } 
  });
})();

超时不是延迟。超时是在认为请求失败之前应该等待的时间。通过将complete设置为poll,您告诉它立即拨打另一个呼叫。您需要在complete函数中设置延迟

我能猜到的是,您在ajax调用完成后再次执行投票函数。完成ajax调用可能只需要一秒钟。
你可以在javascript代码中使用计时器。尝试使用settimeoutsetInterval。在计时器中调用ajax。看是否有帮助

timeout: 30000只是为了确保您的ajax调用将等待响应的最长时间。

你正在执行你的投票功能,只要ajax调用完成,这就是为什么调用这么快。

相关文章: