0

对于每个变量 i,下面的代码应该遍历每个书签节点并比较 url,无论它是否存在。

for(i=0;i<arg1;i++){
    chrome.bookmarks.getChildren(Traverse[i], function(child){       //to fetch the child nodes
        Loc =child.length;
        alert(Loc);   // This message to appear first
        if(Loc != 0){
            child.forEach(function(book) {
                if (book.url == urL){
                    alert("Bookmark already exist");
                    element = "init";
                }   
            }); 
        }
    });
alert("message to be printed last");
}

由于该方法是异步的,因此我收到了最后一条消息,并且不会发生书签遍历。任何帮助将非常感激。

谢谢 !!

4

1 回答 1

0

你可能需要一个闭包:

for(i=0;i<arg1;i++){
    (function(my_i) {
        chrome.bookmarks.getChildren(Traverse[my_i], function(child){
            Loc =child.length;
            alert(Loc);
            if(Loc != 0){
                child.forEach(function(book) {
                    if (book.url == urL){
                        alert("Bookmark already exist");
                        element = "init";
                    }   
                }); 
            }
        });
    })(i);
    alert("message to be printed last");
}

我猜你知道你正在覆盖循环内每次迭代Loc的变量和变量?element

于 2013-03-24T12:01:44.853 回答