|
|
|
|
|
by baddox
4385 days ago
|
|
> Ember's examples on their site are always the simplest use-case. This is really key. Even extremely common patterns that will be present in virtually every web app have no examples that I can find anywhere on the web. A great example is simple nested resources, where the URL is something like `/tv_shows/555/seasons/3/episodes/2`. Obviously, this is the page that displays info about episode 2 of season 3 of the TV show with id 555. So how do I reference the tv_show model (which I will almost certainly need to do) from the `EpisodesIndexController` or the `episodes/index` template? Do I really have to specify `needs` [0] on every controller nested under `TvShowsController`, and perhaps add a `setupController` hook to make the property easily accessible like in this tutorial [1]? Granted, I'm pretty new to this, so maybe I'm just missing the obvious way to do this sort of thing clearly. [0] http://emberjs.com/guides/controllers/dependencies-between-c... [1] http://balinterdi.com/2014/02/26/a-common-resource-route-pat... |
|
http://emberjs.com/guides/routing/defining-your-routes/#toc_... ?
See also http://hashrocket.com/blog/posts/ember-routing-the-when-and-... and http://ember101.com/videos/007-nested-routes/
These are the first three results for "Ember nested routes" on Google. They're all pretty simple and straightforward. Hope that helps!