From the course: Ember.js Essential Training

Unlock this course with a free trial

Join today to access over 22,400 courses taught by industry experts.

Display a collection

Display a collection

- [Instructor] Displaying a collection is a pretty easy problem that we've done a few times with the use of the each Ember helper. Let's explore the each helper in a little more detail. First, we need a collection of users to deal with, so we will open up a route file at app, routes, users, index dot JS, and add a model hook. On line five, for our model, we want to return the collection of users with return this dot get store dot find all user. Next, we want to open up our users index template to deal with this collection, at app, templates, users, index. At this point, we can loop over our collection using the each helper, as we've seen before in the past. To do so, we will add, on line three, our double curly braces, pound, each, model, as, and then, in pipes, user. At this point, I want to show something new. We can also add in the index value for the user. In other words, we can add in the index value for which user this is in our model collection. To do so, we just add a space…

Contents