1

location.hrefcontentscript から 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 は時代遅れです。

sendMessageを使用する

于 2014-02-01T02:04:00.570 に答える