2016年12月10日 星期六

使用 complete 呼叫的 jquery ajax polling

(function poll(){
  $.ajax({
    url: "/poll",
    success: function (data) {
      do_something_with(data);
    },
    dataType: "json",
    complete: poll,
    timeout: 30000
  });
})();

沒有留言:

張貼留言