我正在关注Organizing Backbone Using Modules tutorial,除了自从撰写文章以来我必须做出的一些调整以适应依赖项的更改,我无法获得我的.on()事件在路线匹配时开火。
如果查看索引路由器,您将看到一个警报和一个console.log()。页面加载时都不会触发。也没有js错误。
非常感谢任何帮助。
router.js
define([
'jquery',
'underscore',
'backbone',
'views/index',
'views/ideas'
], function($, _, Backbone, IndexView, IdeasView) {
var AppRouter = Backbone.Router.extend({
'': 'index',
'/ideas': 'showIdeas',
'*actions': 'defaultAction'
});
var initialize = function() {
console.log('this works so i know initialize() is being called');
var app_router = new AppRouter;
// not firing
app_router.on('route:index', function() {
alert('hi');
console.log('hi');
// var index_view = new IndexView();
// index_view.render();
});
// not firing
app_router.on('route:showIdeas', function() {
console.log('showIdeas');
var ideas_view = new IdeasView();
});
//not firing
app_router.on('route:defaultAction', function(actions) {
console.log('No route:', actions);
});
if (!Backbone.history.started ) {
Backbone.history.start();
console.log( "Route is " + Backbone.history.fragment );
}
};
return {
initialize: initialize
};
});
答案 0 :(得分:1)
确保将实际路由放在路由器定义中的路由哈希中:
var AppRouter = Backbone.Router.extend({
routes: {
'': 'index',
'/ideas': 'showIdeas',
'*actions': 'defaultAction'
}
});
我还想补充一点,我更喜欢在路由器定义中放置路由的回调(它只是一个偏好):
var AppRouter = Backbone.Router.extend({
routes: {
'': 'index',
'/ideas': 'showIdeas',
'*actions': 'defaultAction'
},
index: function () {
// function body here
},
showIdeas: function () {
// function body here
},
defaultAction: function () {
// function body here
}
});
这不是必需的,但对我而言,阅读和查看正在发生的事情会更容易。