Ho appena aggiornato la mia domanda di ember 2.1
e sto ottenendo questo errore nel mio console web browser:TypeError Uncaught: this.transitionTo non è una funzione
Uncaught TypeError: this.transitionTo is not a function
Nel mio url, ho una variabile denominata direction
:
http://localhost:4200/plates/new?direction=plates
Poi ho costruire questo nel mio controller:
export default Ember.Controller.extend({
queryParams: ['direction'],
direction: null,
actions: {
lastpage(){
this.transitionTo(this.get('direction'));
},
save(...){
},
},
});
questo u sed a lavorare prima del mio aggiornamento. Cosa svalutato/come posso risolvere questo errore?