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

ang*_*okh 4 html iframe google-chrome google-chrome-extension

我从内容脚本中插入了一个 iframe。它工作正常。但是如果我想在 iframe 上显示父级的 html 内容,我必须使用消息在 iframe 和内容脚本之间进行通信,但它不起作用。然后我尝试将消息从 iframe 发送到“事件页面”,然后发送到“内容脚本”。一旦内容脚本收到消息,它将查询 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' });
  }
});
Run Code Online (Sandbox Code Playgroud)

活动页面:

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);
      });
    });
  }
});
Run Code Online (Sandbox Code Playgroud)

框架.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);
});
Run Code Online (Sandbox Code Playgroud)

ang*_*okh 5

我发现了一个相关的问题。/sf/answers/1405449811/

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

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

所以我必须返回 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
  }
});
Run Code Online (Sandbox Code Playgroud)