0

场景:使用的框架是主干和需要。我有一个 main.js,它对 util、model 和 view js 有几个依赖关系,它们又是相互依赖的。还有循环依赖。此 main.js 已使用 requirejs 优化器编译为单个文件。

问题: 如何在运行时覆盖某些视图和模型? (我有一个 main 的编译版本,所以我不是在谈论在编译时排除模型或视图的 js)。

在编译时我不知道模型/视图是否会被覆盖。因此,当我运行优化器时,会创建一个包含所有模型和视图的 js 文件。我需要覆盖该单个 js 文件中的特定类定义,这样我就不会修改该文件。

是否有任何配置会告诉“要求”从单独的文件而不是单个编译的 js 文件加载模型/视图?

或者有什么办法可以通过最小的变化来实现?

    //models/ - folder

//mymodel.js - filename
define([
    'jquery',
    'underscore',
    'backbone'
], function($, _, Backbone) {
    var mymodel2 = Backbone.Collection.extend({
       //some code
    });
    return mymodel2;
});

//mymodel2.js - filename
define([
    'jquery',
    'underscore',
    'backbone',
    'mymodel'
], function($, _, Backbone, mymodel) {
    var mymodel2 = Backbone.Collection.extend({
       //some code
    });
    return mymodel2;
});

//views/ - folder


//view1.js - filename
define([
    'jquery',
    'underscore',
    'backbone',
    'runtime/util/logmanager',
    'runtime/util/logger'
], function($, _, Backbone, LogManager, Logger) {
    var view1 = Backbone.View.extend({

        _configure: function(options) {
            //some code
        },

        initialize: function() {
            //some code
        },

        endsWith: function(str, suffix) {
            //some code
        }

    });
    return view1;
});

//like this i have view2.js, view3.js... etc

//Similarly i have util folder with util1.js, util2.js... etc

//main.js
;(function(){

    if (!window.console) window.console = {};
    if (!window.console.log) window.console.log = function () { };
    var paths = {
        jquery: 'libs/jquery/jquery',
        underscore: 'libs/underscore/underscore',
        initializer: 'runtime/initializer/initializer',
        backbone: 'libs/backbone/backbone',
        json2: 'libs/json/json2',
        text: 'libs/require/text',
        jqueryform: 'libs/jqueryform/jqueryform',
        jqueryui: 'libs/jqueryui/jquery-ui',
        slimscroll: 'libs/slimscroll/slimScroll',
        i18next: 'libs/i18next/i18next',
    common: 'libs/commons/common',

    utility1 : 'util/util1',
    utility2 : 'util/util2',
    .
    .
    model2 : 'model/mymodel2',
    .
    .
    .
    view2 : 'view/view1'
};

window.configData = window.configData || {};
window.configData.serverPath = location.protocol + "//" + window.location.host;

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

require(['router'],
    function(Router) {
        Router.initialize();
    });
})();

编译/组合文件看起来像:

    *! jQuery v1.7.1 jquery.com | jquery.org/license */
(//jquery-def file code)(window);

//     Underscore.js 1.3.3
//     (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
//     Underscore is freely distributable under the MIT license.
//     Portions of Underscore are inspired or borrowed from Prototype,
//     Oliver Steele's Functional, and John Resig's Micro-Templating.
//     For all details and documentation:
//     http://documentcloud.github.com/underscore

(function() {

    //uderscore code
}).call(this);

define("underscore", (function (global) {
    return function () {
        var ret, fn;
        return ret || global._;
    };
}(this)));
.
.
.
all lib definition 
.
.
then depending on the dependencies models, views, utils, routers, definition
.
.
and finally main
;(function(){

    if (!window.console) window.console = {};
    if (!window.console.log) window.console.log = function () { };
    var paths = {
        jquery: 'libs/jquery/jquery-min',
        underscore: 'libs/underscore/underscore',
        initializer: 'runtime/initializer/initializer',
        backbone: 'libs/backbone/backbone',
        json2: 'libs/json/json2',
        text: 'libs/require/text',
        bootstrap: 'libs/bootstrap/bootstrap',
        jqueryform: 'libs/jqueryform/jqueryform',
        jqueryui: 'libs/jqueryui/jquery-ui',
        slimscroll: 'libs/slimscroll/slimScroll',
        i18next: 'libs/i18next/i18next',
        common: 'libs/commons/common',

        utility1 : 'util/util1',
        utility2 : 'util/util2',
        .
        .
        model2 : 'model/mymodel2',
        .
        .
        .
        view2 : 'view/view1'
    };

    window.configData = window.configData || {};
    window.configData.serverPath = location.protocol + "//" + window.location.host;

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

    require(['router'],
        function(Router) {
            Router.initialize();
        });
})();


define("main", function(){});
4

3 回答 3

1

是否有任何配置会告诉“要求”从单独的文件而不是单个编译的 js 文件加载模型/视图?

要使用 require 加载 Javascript 文件,您可以随时调用它(即使在优化器运行之后),如下所示:

myModule = require('myJavascriptFile');

优化后的文件不是为操作而设计的。修改您的源,然后重新优化。

另外,请注意:Require 不会编译您的 Javascript。

于 2012-12-05T06:36:13.953 回答
0

您可以覆盖require()自身并使其在以正常方式加载之前先在目录中查找模块。

这可能并不容易做到。

于 2012-12-05T07:24:26.887 回答
0

如何在运行时覆盖某些视图和模型?

在 Javascript 中,您可以随时重新分配变量。例子:

var x = 1; // the value of x is 1
x = 2; // the value of x is now 2

同样,您可以在运行时覆盖 Backbone 模型和视图,如下所示:

var myModel = new Backbone.Model({x: 1});// create myModel
myModel = new Backbone.Model({x: 2});// now, myModel is a different model
myModel = "something else entirely";// now, myModel is a string
于 2012-12-05T05:32:49.140 回答