我需要在我的sencha項目中使用路線。但我不明白爲什麼路線在最後工作,即使我寫在其他之前。例如,路線最後工作
myFunction:function(){
console.info('hello ')
this.redirectTo('routingTest',true); //routes to hash 'routingTest'
console.info('world. ');
}
-----------
Output:
hello
world.
HI
但我想要的結果作爲
hello
HI
world.
=============
這裏是我的路線:
routes:{
'routingTest':{
action:'testing'
}
},
testing:function(){
console.log('HI')
}
任何方法來解決這個問題?在此先感謝
其實在路由功能,console.log('HI')我需要做更多的流量,它的console.log在這裏。我想知道它的順序。 –
您是否嘗試過建議的更改?它有用嗎? – mjs
是的,我嘗試過但仍然一樣。 –