我的r.js启动文件,由r.js.cmd -o static/js/boot.js
({
baseUrl: './',
preserveLicenseComments: false,
name: 'boot',
stubModules: ['text'],
mainConfigFile: './requirejs/config.js',
out: 'build.min.js',
//paths: {
// 'text': 'plugins/requirejs.text'
//},
})
然后插件在控制台中抛出异常:
Error: Error: Loader plugin did not call the load callback in the build:
text:
text!langJSON: Error: ENOENT, no such file or directory 'C:\web\lang\main'
text!/web/downloads/links.json: Error: ENOENT, no such file or directory 'C:\web\downloads\links.json'
有人可以回答我为什么r.js评估'text'插件,尽管在构建配置文件属性中使用'stubModules'参数?
我之前读过这篇文章:
答案 0 :(得分:1)
stubModules
不会告诉优化器跳过通过text
插件加载的所有内容。它只是告诉优化器用最终包中的代码替换插件:
define('text',{load: function(id){throw new Error("Dynamic load not allowed: " + id);}});
如果要创建一个包含代码所需的每个模块的包,这将非常有用。如果是这种情况,那么通过text
加载的所有模块已经已经在捆绑包中,因此在捆绑包中包含text
插件的代码是没有意义的,因为它不会被使用。 (在这种情况下,插件在构建时使用,但不在运行时使用。)
你得到的错误是因为优化器仍然试图在你的包中包含那些通过text
加载的模块,但它没有找到文件。
如果您想要做的是从包中排除通过text
加载的所有内容,您可以做的一件事就是在构建配置中添加paths
,将这些模块列为{{1} }。例如:
empty:
但是您需要在运行时使用paths: {
'web/downloads/links.json': 'empty:',
...
}
插件来加载文本,因此您应该删除text
。