1

我的 Chrome 打包应用程序有 2 个 JavaScript 文件。

1. background.js 是 manifest.json 调用的主要 JavaScript 文件

var foo = 'sss';

function bar(a,b) {
    return a+b;
}

chrome.app.runtime.onLaunched.addListener(function() {
  chrome.app.window.create('index.html', {
    bounds: {
      width: 500,
      height: 300
    }
  });
});

2. app.js 是 index.html 的控制器

问题:我可以从app.js中的background.js调用变量“foo”或函数“bar”吗?

PS。或者有任何解决方案来在页面之间转移价值,例如chrome.storage

4

1 回答 1

5

在您的 app.js 中,您可以获得这样的背景页面:

chrome.runtime.getBackgroundPage(function(page) {
    page.foo;
    page.bar(2, 2);
});
于 2013-09-24T13:13:11.247 回答