使用 RequireJS 加载主干和下划线

我正在尝试使用RequireJS加载Backbone和Underscore(以及jQuery)。对于最新版本的Backbone和Underscore,这似乎有点棘手。首先,Underscore会自动将自己注册为一个模块,但Backbone假设Underscore在全球范围内可用。我还应该注意,Backbone似乎没有将自己注册为一个模块,这使得它与其他库不一致。这是我能想到的最好的主要.js:

require(
{
    paths: {
        'backbone': 'libs/backbone/backbone-require',
        'templates': '../templates'
    }
},
[
    // jQuery registers itself as a module.
    'http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js',

    // Underscore registers itself as a module.
    'http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.2.1/underscore-min.js'
], function() {

    // These nested require() calls are just due to how Backbone is built.  Underscore basically says if require()
    // is available then it will automatically register an "underscore" module, but it won't register underscore
    // as a global "_".  However, Backbone expects Underscore to be a global variable.  To make this work, we require
    // the Underscore module after it's been defined from within Underscore and set it as a global variable for
    // Backbone's sake.  Hopefully Backbone will soon be able to use the Underscore module directly instead of
    // assuming it's global.
    require(['underscore'], function(_) {
        window._ = _;
    });

    require([
        'order!http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.5.3/backbone-min.js',
        'order!app'
    ], function(a, app) {
        app.initialize();
    })
});

我应该提到,虽然它工作,但优化器会窒息它。我收到以下内容:

Tracing dependencies for: main
js: "/home/httpd/aahardy/requirejs/r.js", line 7619: exception from uncaught JavaScript throw: Error: Error: Error evaluating module "undefined" at location "/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js":
JavaException: java.io.FileNotFoundException: /home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js (No such file or directory)
fileName:/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js
lineNumber: undefined
http://requirejs.org/docs/errors.html#defineerror
In module tree:
    main

有没有更好的方法来处理这个问题?谢谢!


答案 1

RequireJS 2.X现在使用新的填充码配置,可以更好地解决非AMD模块(如Backbone & Underscore)的地址。

配置易于使用:(1)一个声明依赖关系(如果有的话)(可能来自配置,或者可能是有效的路径本身)。(2)(可选)从要填充的文件中指定全局变量名称,该名称应导出到需要它的模块函数中。(如果您没有指定导出,那么您只需要使用全局,因为没有任何东西会传递到您的要求/定义函数中。shimdepspaths

下面是加载主干的简单示例用法。它还为下划线添加导出,即使它没有任何依赖项。shim

require.config({
  shim: {
    underscore: {
      exports: '_'
    },
    backbone: {
      deps: ["underscore", "jquery"],
      exports: "Backbone"
    }
  }
});

//the "main" function to bootstrap your code
require(['jquery', 'underscore', 'backbone'], function ($, _, Backbone) {   // or, you could use these deps in a separate module using define

});

注意:这个简化的代码假设jquery,backbone和下划线位于名为“jquery.js”,“backbone.js”和“underscore.js”的文件中,与此“main”代码位于同一目录中(它成为必需的baseURL)。如果不是这种情况,则需要使用路径配置

我个人认为,使用内置功能,不使用Backbone & Underscore的分叉版本的好处超过了使用AMD分叉的好处,但无论哪种方式都有效。shim


答案 2

更新:从版本 1.3.0 开始,下划线删除了 AMD(RequireJS)支持

您可以使用 amdjs/Backbone 0.9.1amdjs/Underscore 1.3.1 分叉,以及 James Burke(RequireJS 的维护者)支持的 AMD 支持。

有关 AMD 对 Underscore 和 Backbone 的支持的更多信息

// main.js using RequireJS 1.0.7
require.config({
    paths: {
        'jquery': 'libs/jquery/1.7.1/jquery',
        'underscore': 'libs/underscore/1.3.1-amdjs/underscore', // AMD support
        'backbone': 'libs/backbone/0.9.1-amdjs/backbone', // AMD support
        'templates': '../templates'
    }
});

require([
    'domReady', // optional, using RequireJS domReady plugin
    'app'
], function(domReady, app){
    domReady(function () {
        app.initialize();
    });
});

模块已正确注册,无需订单插件:

// app.js
define([
    'jquery', 
    'underscore',
    'backbone'
], function($, _, Backbone){
    return {
        initialize: function(){
            // you can use $, _ or Backbone here
        }
    };
});

下划线实际上是可选的,因为Backbone现在自己获取其依赖项:

// app.js
define(['jquery', 'backbone'], function($, Backbone){
    return {
        initialize: function(){
            // you can use $ and Backbone here with
            // dependencies loaded i.e. Underscore
        }
    };
});

用一些AMD糖,你也可以这样写:

define(function(require) {
    var Backbone = require('backbone'),
        $ = require('jquery');

    return {
        initialize: function(){
            // you can use $ and Backbone here with
            // dependencies loaded i.e. Underscore
        }
    };
});

关于优化器错误:仔细检查您的构建配置。我假设您的路径配置已关闭。如果您有一个类似于 RequireJS Docs 的目录设置,则可以使用:

// app.build.js
({
    appDir: "../",
    baseUrl: "js",
    dir: "../../ui-build",
    paths: {
        'jquery': 'libs/jquery/1.7.1/jquery',
        'underscore': 'libs/underscore/1.3.1-amdjs/underscore',
        'backbone': 'libs/backbone/0.9.1-amdjs/backbone',
        'templates': '../templates'
    }, 
    modules: [
        {
            name: "main"
        }
    ]
})