0

我知道您可以使用 ajax 刷新,定期拉动,给定一个计时器。但是,如何设置页面仅在服务器端触发/发生 http 请求时才更新?

所以你通常会这样做

定期页面更新:

// Use a named immediately-invoked function expression.
(function worker() {
  $.get('ajax/test.html', function(data) {
    // Now that we've completed the request schedule the next one.
    $('.result').html(data);
    setTimeout(worker, 5000);
  });
})();

事件驱动页面更新:(仅当服务器发送响应时)

问题:你会怎么做?这可能吗?

4

1 回答 1

0

服务器在请求之间没有与客户端的连接。如果您绝对想要事件驱动的请求,则必须使用插件。我会使用定期 ajax 请求。

于 2013-11-12T21:03:18.230 回答