我遇到了一个非常奇怪的错误。
在我的background.js文件中,我有一个关闭标签的功能
closeTabs = function(tabIds,category){
for(var i=0; i<tabIds.length;i++){
var url = findTabById(tabIds[i]).url;
console.log(url);
reservedUrls.push(url);
}
console.log(arrToString(reservedUrls));
if(tabIds.length>0){
chrome.tabs.remove(tabIds,function(){
});
}
}
此功能是从我的浏览器操作中调用的。
然后我有一个删除标签事件的事件监听器。
chrome.tabs.onRemoved.addListener(function(tabId){
console.log('removed');
var removedUrl = findTabById(tabId).url;
console.log(removedUrl);
console.log(arrToString(reservedUrls));
var index = reservedUrls.indexOf(removedUrl);
if(index>-1){
console.log('in here');
reservedUrls.splice(index,1);
} else {
var category = findCategoryById(tabId);
if(category){
for(var i=0;i<currentTabs[category];i++){
if(currentTabs[category][i].id==tabId){
currentTabs[category].splice(i,1);
}
}
} else {
for(var i=0;i<ungrouped.length;i++){
if(ungrouped[i].id==tabId){
ungrouped.splice(i,1);
}
}
}
console.log('sending message');
chrome.runtime.sendMessage({type:'removed',tabId:tabId});
}
console.log(currentTabs);
});
当第一个函数关闭制表符时,我将它们放在reservedUrls中,这样逻辑的行为就不同了。当我查看后台页面的控制台时,它会像它应该的那样输入if语句。但是,在弹出窗口的控制台中,它会记录它导航到else语句。
是否每个人都有这种差距。如果是这样,典型的原因是什么?
答案 0 :(得分:0)
删除选项卡脚本是在自己的上下文中执行的,并不意味着它会同步删除选项卡。因此,一旦从系统中删除了选项卡,您的侦听器就会获得该事件。您可以使用阻止选项卡关闭表单卸载事件的页面来检查这一点