weixin_33736832 2018-06-05 17:28 采纳率: 0%
浏览 50

Ajax太慢-递归

A ajax code that i am using to request a page is consuming too much memory and is making the browser slow and everything lag. It seems like there is recursion going on and i dont know of any way to prevent it. Here is what the code looks like.

$(".item").each(function() {
    $this = $(this);
    var dataString = {s: "<?echo $_SESSION['currentview_'.$stamp]?>", r:"<?echo $search_usernumber?>", st: "<?echo $stamp?>"};
    $.ajaxSetup({cache:false});
    function timeLeft() {
        $.ajax({
            type: "POST",
            url: "get_content_home.php",
            dataType: "html",
            data: dataString, 
            success: function(result) {
                $this.html(result);
                //console.log("a");
                window.setInterval(function() {
                    timeLeft();
                }, 500);
            }
        });
    }
    timeLeft();
});

How can i solve this problem? Thanks in advance.

  • 写回答

1条回答 默认 最新

  • weixin_33698823 2018-06-05 17:39
    关注

    You are recursing and you shouldn't be using this form of nested setInterval. Doing this, will cause an explosion of interval instances. Instead of using setInterval, schedule additional requests using setTimeout.

    setInterval will fire and continue firing every interval until you tell it to stop.

    setTimeout will fire once.


    Let's consider the following code which should address some of the issues you are having in this question as well as your other 2 questions.

    First off, as we said before, don't use setInterval unless you actually want it to run forever. Additionally, don't nest the setInterval creations unless you actually mean to.

    Instead, let's create a recursive function getTimeLeft() that will handle firing the request and scheduling the next check for time left after some duration.

    This example also mocks the $.ajax() function so that you can see the function in action since we don't have an actual back end to use.

    // Fake server side data to keep track of time lefts
    const timeLefts = {
      foo: 0,
      bar: 0,
      fizz: 0,
      buzz: 0
    };
    const timeLeftsUpdateInterval = setInterval(() => {
      for (const [key, val] of Object.entries(timeLefts)) {
        timeLefts[key] = Math.min(val + Math.random() * 10, 100);
      }
      if (Object.entries(timeLefts).every(([k, v]) => v >= 100)) {
        clearInterval(timeLeftsUpdateInterval);
      }
    }, 1000);
    
    // Mock $.ajax function to stub sending AJAX requests
    function $ajax(kwargs) {
      return {
        done: cb => {
          setTimeout(() => {
            cb(timeLefts[kwargs.data.x]);
          }, 500);
        }
      };
    }
    
    // We will check for an update every second after the last request finishes
    const timeLeftCheckInterval = 1000;
    
    // Continuously check to see how much time is left for an element
    function getTimeLeft(el) {
      // Make our request data
      const dataString = {
        s: "<?echo $_SESSION['currentview_'.$stamp]?>",
        r: "<?echo $search_usernumber?>",
        st: "<?echo $stamp?>",
        // My custom property to make this work
        x: el.dataset.item
      };
    
      // Make our request to get the time left
      const req = $ajax({ // Using our mock $.ajax
        type: "POST",
        url: "get_content_home.php",
        dataType: "html",
        data: dataString
      });
    
      // Once the request has finished
      req.done(data => {
        // Set the time left to the element
        el.innerHTML = data;
    
        // Have some condition so that you don't check for time left forever
        // Eventually there will be no time left right?  Why keep checking?
        if (data.timeleft <= 0) return;
    
        // Schedule another round of checking for time left after some duration
        setTimeout(() => {
          getTimeLeft(el);
        }, timeLeftCheckInterval);
      });
    }
    
    // Kick off getting timeleft for all .items
    Array.from(document.querySelectorAll(".item"))
      .forEach(el => getTimeLeft(el));
    <ul>
      <li class="item" data-item="foo"></li>
      <li class="item" data-item="bar"></li>
      <li class="item" data-item="fizz"></li>
      <li class="item" data-item="buzz"></li>
    </ul>

    This code will address the issue that you are having in 2 Ajax non-blocking because each element will have it's own logic of going and fetching time left and updating itself.

    This also addresses the issue that you are potentially facing in Timer in Ajax - Preemption because now the element won't check to see how much time is left again until after the previous check is finished.

    </div>
    
    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大