正如标题所说,我的内联 require 调用在非优化的 requirejs 运行中工作,但在使用 grunt 和 almondjs 构建时不起作用。
Uncaught Error: undefined missing views/some/view
任何文件的顶部可能是:
define(
['jquery', 'app'],
function($, App) {
后来基于业务逻辑,我希望能够需要另一个文件
require(['views/some/view'], function(SomeView){
console.log(SomeView);
});
我也尝试了替代语法:
var SomeView= require('views/some/view');
这一切都使用未构建的 requirejs 版本。但是当我用 grunt 和 almond 构建它时它又失败了
requirejs: {
compile: {
options: {
name: "../components/almond/almond",
baseUrl: "src",
mainConfigFile: "./require.config.js",
include: ['main'],
insertRequire: ['main'], // Add a require step in at the end for the main module.
wrap: true, // Wrap everything up in a closure
generateSourceMaps: true, // Experimental
preserveLicenseComments: false, // Needs turned off for generateSourceMaps
optimize: "uglify2", // Supports generateSourceMaps
out: "assets/javascripts/build.js"
}
}
},
如果我在定义调用中将它放在文件顶部,我可以让它在杏仁中正常工作,但是在 AMD 中保持精简不是更可取吗?