0

状態を維持し、ルートにも応答するコントローラーを持つことは可能ですか?
たとえば、アプリケーションの initControllers メソッドで開始する PlayerController があり、現在再生中のトラックを変更できるように、/player/trackID などのルートに応答する必要もあります。

4

1 に答える 1

1

Yes, you can create a controller which will be active for the lifetime of the application. As you mentioned instantiate PlayerController in initControllers method of the application and in routes.js define the route /player/:trackID to be bound to a specific method of the PlayerController.

e.g. route in routes.js will look like

match('player/:trackID', 'player#playTrack', {name:'playtrack'});

In the above route playTrack is the method of PlayerController.

于 2013-03-30T09:33:05.983 に答える