2

我目前正在将 Marionette 集成到现有的 Backbone 应用程序中。

我有一个现有的 Backbone 路由器,但我正在尝试实现一个 Marionette.AppRouter 来代替它。问题是,在新 Marionette 路由器应该获取的 URL 上的“硬刷新”上,它不会触发。如果我导航到另一个页面,然后返回到硬刷新时未触发的 url,它会正确触发。在我导航到另一个页面并再次返回后,我无法弄清楚它为什么会起作用。这是我的代码示例:

TestApp = new Backbone.Marionette.Application();
    var testAppController = {
        testLoadPage: function(){
            console.log('testLoadPage Fired'); //<---- DOES NOT FIRE ON HARD REFRESH
        }
    };
    TestAppRouter = Backbone.Marionette.AppRouter.extend({          
        appRoutes: {
            "!/:var/page": "testLoadPage",
            "!/:var/page/*path": "testLoadPage"
        },
        controller: testAppController,
        route: function(route, name, callback) {
            return Backbone.Router.prototype.route.call(this, route, name, function() {
                if (!callback) callback = this[name];
                this.preRoute();
                this.trigger.apply(this, ['beforeroute:' + name].concat(_.toArray(arguments)));
                callback.apply(this, arguments);
            });
        },
        preRoute: function() {
            app.showLoader(name, arguments);
        }
    });
    TestApp.addRegions({
        contentContainer: '#container'
    });
    TestApp.addInitializer(function(options){
        new TestAppRouter();
    });
    TestApp.start();

当我加载页面时:http://mysamplesite.com/#!/123/page直接,Marionette 路由器不会按应有的方式触发。

但是,如果我加载 page:http://mysamplesite.com/#!/123然后导航到http://mysamplesite.com/#!/123/page,Marionette 路由器会正确触发。有任何想法吗?

4

1 回答 1

7

Backbone.history.start()在创建路由器实例后调用了吗?如果没有,您需要这样做。在你的应用程序中调用它之前,路由器不会运行,并且在至少一个路由被实例化之前你不能调用它。我通常这样做:


TestApp.on("initialize:after", function(){
  if (Backbone.history){ Backbone.history.start(); }
});

hth

于 2013-03-07T04:07:50.180 回答