0

在 Backbone.Marionette 文档中,一些声明让我感到困惑:

您还可以使用路由器上的方法将标准路由添加到 AppRouter。

https://github.com/marionettejs/backbone.marionette/blob/master/docs/marionette.approuter.md

它在现实中可能是什么样子?

4

1 回答 1

0

您可以在 AppRouter 上添加路由并定义在路由器或控制器中处理它的方法。

MyRouter = Backbone.Marionette.AppRouter.extend({
  // "someMethod" must exist at controller.someMethod
  appRoutes: {
    "some/route": "someMethod"
    "yet/anotherRoute": "routerMethod" // app router route
  },

  /* standard routes can be mixed with appRoutes/Controllers above */
  routes : {
    "some/otherRoute" : "someOtherMethod"
  },
  // method on the router
  routerMethod: function() { 
  // ...
  },
  someOtherMethod : function(){
    // do something here.
  }
});
于 2013-04-11T20:51:20.980 回答