0

使用 Backbone.Marionette 创建一个新应用程序,当我运行 Express 应用程序并加载页面时,我在控制台中收到错误消息:

Uncaught TypeError: Cannot read property 'EventAggregator' of undefined 
backbone.marionette.js:1504

表明它在实际的marionette库中。我看过那条线:

Marionette.EventAggregator = Backbone.Wreqr.EventAggregator;

并且我认为这wreqr可能是我必须添加的一个额外的库?

这是创建应用程序的代码:

require([
    'jquery', 
    'underscore', 
    'backbone', 
    'marionette'
], function( $, _, Backbone, Marionette ){
    MyApp = new Backbone.Marionette.Application();

    MyApp.addRegions({
        main_region: '#main_region'
    });

    MyApp.addInitializer( function(options) {
        var login_form_view = new LoginFormView();
    });
});

以及设置库位置的要求配置:

// using RequireJS 1.0.7
    require.config({
        paths: {
            '$': 'libs/jquery-1.8.2-min',
            'underscore': 'libs/underscore-min', // AMD support
            'backbone': 'libs/backbone.min', // AMD support
            'bootstrap' : 'libs/bootstrap.min',
            'marionette' : 'libs/backbone.marionette', 
            'wreqr' : 'libs/backbone.wreqr',
            'templates': '../templates',
            'text': 'libs/require/text', 
            'login': 'views/user/login'
        }
    });

任何人都知道可能导致错误的原因是什么?

4

1 回答 1

2

是的,wreqr 是 Marionette 的依赖项。

您已经指定了 Wreqr 的路径,但您也需要加载它。在加载 Marionette 之前。

require([
     'jquery', 
     'underscore', 
     'backbone', 
     'wreqr',
     'marionette'
], function( $, _, Backbone, Marionette ){
MyApp = new Backbone.Marionette.Application();

MyApp.addRegions({
    main_region: '#main_region'
});

MyApp.addInitializer( function(options) {
    var login_form_view = new LoginFormView();
});

});

于 2012-10-15T18:44:01.600 回答