コントローラーに別のルートに移動するアクションがあります
App.FirstNewController = Ember.ObjectController.extend({
action: function(data){
this.transitionTo('albums.new');
}
});
次に、そこに新しいアルバムを作成し (ユーザーとやり取りして)、最初の URL にリダイレクトしたいと考えています。
App.AlbumsNewController = Ember.ObjectController.extend({
save: function(data) {
App.store.commit();
this.transitionTo('index');
ここで目次ページに遷移しますが、遷移したくありません。first.new ルートに戻るには、どのように albums.new ルートにデータを渡す必要がありますか?