5

私は次のルートを持っています

App.Router.map(function() {
  this.resource('projects', {path: 'projects'}, function(){
      this.route('new', {path: 'new'});
      this.route('show', {path: ':project_id'});
      this.route('edit', {path: ':project_id/edit'});
  });  
});

「ProjectsNewController」、「ProjectsShowController」、「ProjectsEditController」からのすべてのイベントを「ProjectsController」にバブルさせたい。

どうすればこれを達成できますか?JSBin: http://jsbin.com/ucanam/1284/edit

4

1 に答える 1