zoukankan      html  css  js  c++  java
  • js-依次循环异步请求(普通/ES6)

    要求:请求5次ajax,将结果依次显示在页面

    老办法:用数组+定时器代替for循环

    //递归 -------有顺序
             function getTime(j, length) {
                $start = new Date().getTime();
                Time(j, length);
            }
            function Time(j,length) {
                $.get(seturl, function (e) {
                    $end = new Date().getTime();
                    //js请求时间
                    //计算出相差天数
                    $date = $end - $start;
                    $seconds = Math.ceil($date / (1000));
                    $last = $seconds - e['time'];
                    console.log($seconds);
                    $html = $('<li>' + j + '  test1: ' + e["time"] + 's' + '   /   test2:  ' + $last + 's</li>');
                    $html.appendTo($('.list'));
                    //成功后,判断是否要接着执行
                    if (++j < length) {
                        getTime(j, length);
                    }
                    if (j == 6) {
                        //loading end
                        $('#loading').hide();
                    }
                }, 'json').error(function (XMLHttpRequest, textStatus, errorThrown) {
                    alert(XMLHttpRequest.status);
                    alert(XMLHttpRequest.readyState);
                    alert(textStatus);
                })
            }
            getTime(1, 6);
    

    新办法:ES6 async await

        async function getTime() {
                for (var i = 1; i <6 ; i++) {
                    await Time(i);
                }
            }
    
          function Time(j) {
                $start = new Date().getTime();
                $.get(seturl, function (e) {
                    $end = new Date().getTime();
                    //js请求时间
                    //计算出相差天数
                    $date = $end - $start;
                    $seconds = Math.ceil($date / (1000));
                    $last = $seconds - e['time'];
                    //显示在页面上
                    $html = $('<li>' + j + '  test1: ' + e["time"] + 's' + '   /   test2:  ' + $last + 's</li>');
                    $html.appendTo($('.list'));
                    if (j == 5) {
                    // loading end
                    $('#loading').hide();
                    }
                }, 'json').error(function (XMLHttpRequest, textStatus, errorThrown) {
                    alert(XMLHttpRequest.status);
                    alert(XMLHttpRequest.readyState);
                    alert(textStatus);
                })
            }
    
        getTime();
    

  • 相关阅读:
    关于字符串转义的代码
    JAVA发布aar文件
    apache虚拟主机配置HTTPS
    font-face跨域办法
    Javascript数组方法(译)
    Python动态生成变量
    给AOP的after函数使用原函数局部变量
    stopImmediatePropagation的应用
    IE9或以上的浏览器flash值为空时,导致domready不触发
    html写法对gzip压缩率的影响
  • 原文地址:https://www.cnblogs.com/gggggggxin/p/11526694.html
Copyright © 2011-2022 走看看