对于每个变量 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");
}
由于该方法是异步的,因此我收到了最后一条消息,并且不会发生书签遍历。任何帮助将非常感激。
谢谢 !!