Asynquence中的投票

时间:2015-03-06 04:08:58

标签: javascript asynchronous recursion

我想在异步中实施民意调查。我已经能够通过递归进行轮询,但是一旦轮询完成,我就无法控制回主序列。

示例代码:

function countdown(count){
    return ASQ().then(function(done){
        //  This is where the call http call would be made...
        console.log("Countdown: " +count);
        if (count){
            return countdown(count-1);
        }
        done();
    })
}
function viewSvg(visId) {
    console.log("viewSvg");

    ASQ()
        .then(function(done) {
            console.log("Stage 1");
            done();
        })
        .val(4)
        .seq(countdown)
        .then(function(done){
            console.log("Stage 5");
            done();
        });

产生结果:

Stage 1
Countdown: 4
Countdown: 3
Countdown: 2
Countdown: 1
Countdown: 0

请注意,不打印第5阶段:

我创建了一个jsFiddle here

我确定我只是做了一些简单的错误,有人可以给我一些帮助吗?

当我学习asnquence时,我注意到一个类似的行为(即,控制没有返回到主序列)当我调用.then(my_function),其中my_function也创建了一个序列。我发现调用.seq()是正确的做法,但它似乎不适用于递归......

1 个答案:

答案 0 :(得分:2)

似乎你不能从then回调中返回一个序列。请改用seq

function countdown(count){
    return ASQ().seq(function(){
        addRow("log2", "Countdown: " +count);
        if (count) {
            return countdown(count-1);
        } else {
            return ASQ();
        }
    });
}

updated demo