我正在尝试回答this问题,但是我的代码无法正常工作,我无法弄清原因。我正在从控制iFrame(popup.js)的脚本向我的内容脚本传递一个变量,然后让内容脚本响应我需要在popup.js中使用的数据。问题是,我需要能够处理整个popup.js中的数据,并且消息传递范围不允许这样做,所以我尝试如下使用bind方法:
var currentSite;
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
let bindSite = function(response){
console.log(response);
this.currentSite = response.Site;
};
chrome.tabs.sendMessage(tabs[0].id, {type: "getSite"}, bindSite.bind(this));
});
console.log("Since I bound it, currentSite should be in the scope here " + currentSite);
该站点在函数内部的console.log()中打印,但在函数外部的console.log()语句中未定义地打印。我想念什么?