11

正如标题所说,我的内联 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 中保持精简不是更可取吗?

4

1 回答 1

10

根据 Almond 文档,它在非动态加载和打包到一个文件中的所有内容时效果最佳。

您应该能够在编译选项中将“findNestedDependencies”设置为 true,以确保您的内联 require 调用包含在构建中。

于 2013-04-30T03:17:13.057 回答