为什么我的Backbone Route Events不起作用?

时间:2014-09-07 00:55:43

标签: javascript backbone.js backbone-events backbone-routing

有人可以解释为什么router.on("route:myTest", function(page) {});不起作用吗?

我的Backbone.Router如下:

var MyRouter = Backbone.Router.extend({
    initialize: function(){
        Backbone.history.start({ pushState:true, root:"/subdir/" });
    },
    routes: {
        '' : 'start',
        'base' : 'myTest',
        'base/:name': 'myTest',
        'base/:name/:skill': 'myTest',
        '*default': 'defaultRoute'
    },
    start: function(){
        alert('Chapter 5 route invoked');
    },
    defaultRoute: function(){
        alert('Router does not handle this route');
    },
    myTest: function(name,book){
        if(name !== undefined){
            if(book !== undefined){
                alert([name, 'is reading', book].join(' '));
            }else{
                alert('Saying hello to ' + name);
            }
        }else{
            alert('Saying hello!');
        }
    }
});

以下是我的html页面上的代码:

function showBook(name){
    console.log('Show book ' + name);
    router.navigate('book/' + name);
}
router.on("route:myTest", function(page) { showBook('TestBook'); });

1 个答案:

答案 0 :(得分:0)

Backbone.Router不会触发路由名称的事件(在这种情况下为myTest)。如果您查看the docs,您可以看到路由器触发routeroute:[name]事件,因此您应该使用以下内容:

router.on('route:myTest', function(){});

如果路线与basebase/:namebase/:name/:skill相匹配,那么该事件将会被触发。这可能是您正在寻找的,也可能不是。