检测异步递归的结束

时间:2011-04-19 14:22:10

标签: javascript

var checkduplicates = new Array();
drawOne(i); 
//console.log(checkduplicates)

function drawOne(i)
{
    //randomly select one photo
    var picinfo = photos[Math.floor(Math.random()*photos.length)];
    //check duplicates pic, if duplicates exist, get another one
    while(checkduplicates.indexOf(picinfo)!=-1||picinfo.title.length>10)
    {
        picinfo = photos[Math.floor(Math.random()*photos.length)];
    }
    checkduplicates.push(picinfo);

    var ctx = document.getElementsByClassName("canvas")[i].getContext('2d');
    var img = new Image(); 
    //get the pic URL
    img.src = "http://farm" + picinfo.farm + ".static.flickr.com/"
    + picinfo.server + "/" + picinfo.id + "_" + picinfo.secret + "_m.jpg";

    img.onload = function()
    {
        // Draw pieces
        ctx.drawImage(img,0,0,132,150);
        ctx.drawImage(frame,0,0,133,152);
        if(picinfo.title=="")
            $("#"+i).append("Untitled");
        else
            $("#"+i).append(picinfo.title);

        i++;
        if (i != canvaslength)
        {
            drawOne(i);
        }
    }

我在这里做的是我动态生成图片以填充16画布,有些人说我使用异步递归,我甚至没有注意到。我试图使用循环而不是递归但不知何故结束它得到异常,我不知道如何修复。所以我坚持递归。但是,我的问题是如何检测递归的结束,如注释行显示数组中只有一个项目。

//console.log(checkduplicates)

我得到的解释是,据我所知,评论的console.log在一堆drawOne函数的递归完成之前执行但是我想要的是我想要完整加载完整的16个图像然后选择它们这样我就能和他们做点什么。因此,问题是如何检测递归的结束。谢谢。欢迎您忽略我的大部分代码,只看一下递归部分。

1 个答案:

答案 0 :(得分:0)

这不是'异步递归'。这意味着至少有两个循环同时运行,并且它们异步返回。事实并非如此。

基本上你停止递归的唯一时间是i == canvaslength。

所以,只需要使用if语句。

if (i != canvaslength)
{
    drawOne(i);
}else{
    console.log('recursion is done')  // do what you want here.
}