1

なぜ私のルーターにナビゲートする方法がないのか疑問に思っていますか?

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'

コンソールからnavigateを呼び出そうとしましたが、どちらも機能しないようです。

私は何が間違っているのですか?

4

1 に答える 1

9

ルーターオブジェクトでnavigateを呼び出す必要があります。クラス自体で呼んでいるようです。

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


myRouter.navigate('', true);
于 2013-03-25T10:22:01.687 に答える