1

我有一个简单的函数,它只是location.href从 contentscript 传递到 popup.html 页面。它不工作。我所拥有的是..

在popup.html ..

        chrome.tabs.getSelected(null,function(tab)
            {
            chrome.tabs.sendRequest({req: "getlocation"}, function(response){
            return response.reply;
            });
            });

在我的内容脚本中...

        case "getlocation":
        sendResponse({
            reply: location.href
            });
     break;

为什么我的代码不起作用?

4

2 回答 2

2

缺少一些参数,而且您不能return从异步回调函数中使用。

popup.html:

function getCurrentUrl(callback){
    chrome.tabs.getSelected(null,function(tab){
        chrome.tabs.sendRequest(tab.id, {req: "getlocation"}, function(response){
            callback(response.reply);
        });
    });
}

getCurrentUrl(function(url){
    console.log("url:", url);
});

content_script.js:

chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
    switch(request.req) {
        case "getlocation": 
            sendResponse({
                reply: window.location.href
            });
            break;
    }
});
于 2011-02-16T17:19:08.747 回答
0

sendRequest 已过时。

使用发送消息

于 2014-02-01T02:04:00.570 回答