Development Helpers Development Helpers Handlebars and Ember come with a few helpers
Displaying a List of Items To iterate over a list of items, use the {{#each}} helper. The first argument to this helper is the
Creating, Updating and Deleting Creating Records You can create records by calling
Displaying the Keys in an Object If you need to display all of the keys or values of a JavaScript object in your template, you can use the
Customizing Serializers In Ember Data, serializers format the data sent to and received from the backend store. By default, Ember Data serializes
Links The {{link-to}} Helper You create a link to a route using the
Defining Models A model is a class that defines the properties and behavior of the data that you present to the user. Anything that the user
Computed Properties and Aggregate Data Sometimes you have a computed property whose value depends on the properties of items in an array.
Reopening Classes and Instances You don't need to define a class all at once. You can reopen a class and define new properties using the
Feature Flags New features are added to Ember.js within conditional statements. Code behind these flags can
Page 8 of 10