February 2016
Beginner to intermediate
308 pages
5h 46m
English
Often, controllers will need to access other controllers' properties and models. This is especially important when you have nested resources. In this recipe, we'll take a look at a nested controller that needs access to the parent controller's model and properties.
$ ember g route foo1 $ ember g route foo1/foo2 $ ember g controller foo1 $ ember g controller foo1/foo2 $ ember g template index
This generates the foo1 and foo2 routes and controllers. The foo2 route is a nested route. The index template will contain links.
router.js file that all the routes have been created correctly:// app/router.js import Ember ...
Read now
Unlock full access