这是我的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。
答案 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)
没有说任何有用的信息。