Backbone Router没有方法导航

时间:2013-03-25 09:59:19

标签: backbone.js router

只是想知道为什么我的路由器没有方法导航?

我已正确调用new App.Router;。在我看来,我尝试调用我的索引视图:

addTrip: function(e){

    e.preventDefault() ;

    //Adding to collection
    var newTrip = this.collection.create({
        title: this.$('#new_trip #title').val(),
        where: this.$('#new_trip #where').val(),
        desc: this.$('#new_trip #desc').val(),
        rating: this.$('#new_trip .active').text()
    }, { wait: true })  ;

    if(newTrip.validationError){
        this.errorReport(newTrip.validationError) ;
    }

    this.clearForm() ;

    //Navigate to home route
    App.Router.navigate('', true) ;

}

我在Chrome开发工具中收到以下错误:

Uncaught TypeError: Object function (){ return parent.apply(this, arguments); } has no method 'navigate'

我甚至试图从控制台调用导航,它似乎也无法正常工作。

我做错了什么?

1 个答案:

答案 0 :(得分:9)

您应该在路由器对象上调用导航。看来你是在课堂上调用它。

App.myRouter = new Backbone.Router() //or if you have your own base router class App.myRouter = new App.Router() 


myRouter.navigate('', true);