这是我的Coffescript Router类:
class App.Router extends Backbone.Router
initialize: ->
console.log 'Router.init'
@on 'all', ->
console.info 'route changed'
routes:
'': 'home'
'test': 'test'
home: ->
console.log 'home routed'
test: ->
console.log 'test routed'
当我重新加载我的本地主页时,“@ on'all'”回调似乎触发了两次(我的firebug上的double console.info ...)
这是我的萤火虫输出:
App.init
Session.init
Router.init
home routed
route changed
route changed
正如您所看到的,“路线已更改”输出位于我的归属路线之后......
最后这是我的引导代码(使用我的App命名空间......),我放置了history.start
App =
init: ->
console.log 'App.init'
@session = new App.Model.Session
@router = new App.Router
# @userPanel = new App.View.UserPanel
Backbone.history.start pushState: true
Model: {}
View: {}
答案 0 :(得分:5)
all
事件是一种特殊的事件侦听器语法,它捕获由源对象触发的任何类型的所有事件。我猜其他事件实际上根本不是route
事件,而是route:name
事件。
要捕获所有路线,只需使用route
事件:
@on 'route', ->
console.info 'route changed'
答案 1 :(得分:2)
这可以通过查看Backbone source:
来解释this.trigger.apply(this, ['route:' + name].concat(args));
this.trigger('route', name, args);
尝试只收听'路线'事件:
@on 'route'