Chrome扩展开发:消息传递问题

时间:2010-08-12 23:43:20

标签: javascript google-chrome google-chrome-extension chromium

使用Google Chrome扩展程序开发中的内容脚本传递邮件时遇到问题 我的代码结构如下所示:

popup.html:

var oList;
function getHTML()
{
    chrome.tabs.getSelected(null, function(tab) {
     chrome.tabs.sendRequest(tab.id, {action:"getHTML"}, function handler(response) {
      oList = response.dom;
     });
   });

   alert("oList = "+oList );
}

我的内容脚本如下所示:

chrome.extension.onRequest.addListener(
  function(request, sender, sendResponse) {
  if(request.action == "getHTML"){
   sendResponse({dom: document.getElementsByTagName("HTML").length});   
     }
  });

当我通过在我的popup.html中的“oList = response.dom;”处设置断点来调试我的代码时,我得到了 从内容脚本设置正确的值。但在执行扩展时,使用“alert("oList = "+oList );”代码 来自popup.html似乎在它进入服务器之前首先执行..因此,它的值是 没有被设置..有人可以告诉我,我在某处错了吗?

1 个答案:

答案 0 :(得分:5)

大多数Chrome API方法都是异步的。这意味着当您调用它们时,脚本不会等待它们的响应并且只是继续执行。如果你想在响应时执行某些操作,你应该把它放在回调函数中:

chrome.tabs.getSelected(null, function(tab) {
 chrome.tabs.sendRequest(tab.id, {action:"getHTML"}, function handler(response) {
  oList = response.dom;
  alert("oList = "+oList );
 });
});