Chrome扩展程序会将消息从iFrame发送到事件页面,然后发送到内容脚本

时间:2015-05-13 22:24:14

标签: html google-chrome iframe google-chrome-extension

我已从内容脚本中插入了iframe。它工作正常。但是,如果我想在iframe上显示父亲的html内容,我必须使用消息传递来在iframe和内容脚本之间进行通信,但它不起作用。然后我尝试从iframe发送消息到"事件页面"然后到#34;内容脚本"。一旦内容脚本收到消息,它将查询html内容并回复。它也不起作用。我怎样才能使它发挥作用?

内容脚本:

var iframe = document.createElement('iframe');
iframe.id = "popup";
iframe.src = chrome.runtime.getURL('frame.html');
document.body.appendChild(iframe);

chrome.runtime.onMessage.addListener(function(msg, sender, sendResponse) {
  if (msg.from === 'event' && msg.method == 'ping') {
    sendResponse({ data: 'pong' });
  }
});

活动页面:

chrome.runtime.onMessage.addListener(function(msg, sender, sendResponse) {
  if (msg.from === 'popup' && msg.method === 'ping') {
    chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
       chrome.tabs.sendMessage(tabs[0].id, {
        from: 'event',
        method:'ping'}, function(response) {
          sendResponse(response.data);
      });
    });
  }
});

frame.js

// This callback function is never called, so no response is returned. 
// But I can see message's sent successfully to event page from logs.
chrome.runtime.sendMessage({from: 'popup', method:'ping'},
  function(response) {
  $timeout(function(){
    $scope.welcomeMsg = response;
  }, 0);
});

1 个答案:

答案 0 :(得分:3)

我发现了一个相关的问题。 https://stackoverflow.com/a/20077854/772481

来自chrome.runtime.onMessage.addListener的文档:

当事件侦听器返回时,此函数变为无效,除非您从事件侦听器返回true以指示您希望异步发送响应(这将使消息通道保持打开到另一端,直到调用sendResponse为止)。 p>

所以我必须返回true表示sendResponse是异步的。

活动页面:

chrome.runtime.onMessage.addListener(function(msg, sender, sendResponse) {
  if (msg.from === 'popup' && msg.method === 'ping') {
    chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
       chrome.tabs.sendMessage(tabs[0].id, {
        from: 'event',
        method:'ping'}, function(response) {
          sendResponse(response.data);
      });
    });
    return true; // <-- Indicate that sendResponse will be async
  }
});
相关问题