以编程方式将路由添加到Backbone.Router?

时间:2012-03-07 02:55:58

标签: backbone.js routing backbone-routing

这是我的application-router.js文件,我只用几条路线创建Backbone.Router对象:

var App = App || {};

App.Router =  Backbone.Router.extend({
    routes : {
        ''      : 'showDashboard', // Not shown
        '*other': 'showModalError'
    },
    defaultRoute : function(other) { $('#modal404').modal(); }
});

在主javascript文件application.js中,我想以编程方式添加路由。我尝试使用route()函数,但它不起作用,不添加路由。然而它将一个对象传递给“构造函数”,但这将覆盖已定义的路径:

// This works and overrides all defined routes in App.Router
var router = new App.Router({ routes : { '/test/me' : 'testRoute' } });

// This is not working
router.route(ExposeTranslation.get('customers.new.route'), 'newCustomer');
router.route('/test/me/again', 'testAgainRoute');

事实上console.log(App.Router)显示:

routes Object { /test/me="testRoute"}

我想我错过了一些我无法弄清楚的东西,我开始学习这个强大的javascript。

1 个答案:

答案 0 :(得分:14)

您的router.route来电正常,这些来电不是您的问题。当您致电route添加新路由时,新路由将在路由列表的末尾。特别是,您的route来电添加的路线会在'*other'后跟'*other'匹配,因此您的新路线将被有效忽略。

尝试从'*other'移除routes路由并在两次route()来电后添​​加:

routes : {
    ''      : 'showDashboard' // Not shown
},

router.route(ExposeTranslation.get('customers.new.route'), 'newCustomer');
router.route('/test/me/again', 'testAgainRoute');
router.route('*other', 'showModalError');

路线未存储在App.Router对象they're stored inside Backbone.history

route: function(route, name, callback) {
  // ...
  Backbone.history.route(route, _.bind(function(fragment) {
    //...
  }, this));
  return this;
},

这就是为什么你的console.log(App.Router)没有说任何有用的信息。