Chrome扩展程序中的Require.JS:未定义define

时间:2012-05-25 17:50:43

标签: javascript google-chrome google-chrome-extension scope requirejs

我正在尝试在Chrome扩展程序中使用Requre.js。

这是我的清单:

{
    "name":"my extension",
    "version":"1.0",
    "manifest_version":2,
    "permissions": ["http://localhost/*"],
    "web_accessible_resources": [
        "js/test.js"
    ],
    "content_scripts":[
        {           
            "matches":["http://localhost/*"],
            "js":[
                "js/require.js",
                "js/hd_init.js"
            ]
        }
    ]
}

hd_init.js

console.log("hello, i'm init");

require.config({
    baseUrl: chrome.extension.getURL("js")
});

require( [ "js/test"], function ( ) {
    console.log("done loading");
});

JS / test.js

console.log("hello, i'm test");
define({"test_val":"test"});

这是我在控制台中得到的:

hello, i'm init chrome-extension://bacjipelllbpjnplcihblbcbbeahedpo/js/hd_init.js:8
hello, i'm test test.js:8
**Uncaught ReferenceError: define is not defined test.js:2**
done loading 

所以它加载文件,但看不到“define”函数。 这看起来像某种范围错误。 如果我在本地服务器上运行,它可以正常工作。

有什么想法吗?

2 个答案:

答案 0 :(得分:7)

内容脚本中有两种上下文。一个用于浏览器,另一个用于扩展。

将require.js加载到扩展上下文中。但require.js将依赖项加载到浏览器上下文中。 define未在浏览器中定义。

我写了一个关于这个问题的(未经测试的)补丁。要使用它,请在require.js之后将其加载到扩展上下文中。您的模块将加载到扩展上下文中。希望这会有所帮助。

require.attach = function (url, context, moduleName, onScriptLoad, type, fetchOnlyFunction) {
  var xhr;
  onScriptLoad = onScriptLoad || function () {
    context.completeLoad(moduleName);
  };
  xhr = new XMLHttpRequest();
  xhr.open("GET", url, true);
  xhr.onreadystatechange = function (e) {
    if (xhr.readyState === 4 && xhr.status === 200) {
      eval(xhr.responseText);
      onScriptLoad();
    }
  };
  xhr.send(null);
};

答案 1 :(得分:0)