javascript – So implementieren Sie das folgende Flusskontrollschema
巴扎黑
巴扎黑 2017-05-31 10:41:05
0
2
637

巴扎黑
巴扎黑

Antworte allen(2)
曾经蜡笔没有小新

这代码看得我很感动,所以我打出了GG,你直接在控制台输入下面代码就可以看到结果了。。。

function async(arr){
    if( Object.prototype.toString.call(arr) != "[object Array]" ){
        return false;
    }
    var target = arr.shift();
    if(typeof target != "function"){
        return false;
    }
    target(function(){
        async(arr);
    });
}

var one = function(callback){
    setTimeout(function(){
        console.log("first");
        callback();
    },200);
};

var two = function(callback){
    setTimeout(function(){
        console.log("second");
        callback();
    },100);
};

async([one,two]);
async([one,two,two,one,two]);
漂亮男人

我很想问,,异步总得有个url吧,你让url写成函数。。。

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage