我的頁面加載成功後,稍後我想重定向到下一頁params.id
信息。什麼是正確的方式來隨時檢索params
?如何在路由中的模型掛鉤後獲取`params.id`?
這裏是我的router.js:
export default Ember.Route.extend(Validation, {
model: function(params) { //where to store?
if(this.store.hasRecordForId('card-list', params.id)){
return this.store.peekRecord('card-list', params.id);
}
},
actions:{
goToNext(){
return;
this.transitionTo('cs2i.balance.balanceReview', 12); //how to get id?
},
任何一個可以幫助我在這裏? 在此先感謝。