Chrome.webNavigation.onBeforeNavigate无法读取属性'回调'的未定义

Chrome.webNavigation.onBeforeNavigate Cannot read property 'callback' of undefined

本文关键字:未定义 回调 属性 onBeforeNavigate webNavigation 读取 Chrome      更新时间:2023-09-26

我想使用chrome.webNavigation.onBeforeNavigate的回调来获取帧信息,如frameId和parentFrameId。

后台页面中的代码:

chrome.webNavigation.onBeforeNavigate.addListener(onBeforeNaviCallback);
function onBeforeNaviCallback(detail){
    console.log("frameId" +detail.frameId); 
};//end of onBefore 

总是有一个错误:

 Error in event handler for 'webNavigation.onBeforeNavigate': Cannot read property 'callback' of undefined TypeError: Cannot read property 'callback' of undefined
        at Event.dispatch_ (event_bindings:342:58)
        at dispatchArgs (event_bindings:214:26)
        at Object.chromeHidden.Event.dispatchEvent (event_bindings:223:7)

切换订单,在执行该行时,它不知道您在说什么。

function onBeforeNaviCallback(detail){
    console.log("frameId" +detail.frameId); 
};//end of onBefore
chrome.webNavigation.onBeforeNavigate.addListener(onBeforeNaviCallback);