Handling Metadata

Handling Metadata Along with the records returned from your store, you'll likely need to handle some kind of metadata. Metadata is

2016-11-30 16:52:09
Models

Introduction Models are objects that represent the underlying data that your application presents to the user. Different apps will have very

2016-11-30 16:52:32
Pushing Records into the Store

Pushing Records into the Store One way to think about the store is as a cache of all of the records that have been loaded by your application

2016-11-30 16:52:52
Finding Records

Finding Records The Ember Data store provides an interface for retrieving records of a single type.

2016-11-30 16:52:07
Defining Models

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

2016-11-30 16:49:17
Customizing Serializers

Customizing Serializers In Ember Data, serializers format the data sent to and received from the backend store. By default, Ember Data serializes

2016-11-30 16:49:07
Creating, Updating and Deleting

Creating, Updating and Deleting Creating Records You can create records by calling

2016-11-30 16:49:05
Customizing Adapters

Customizing Adapters In Ember Data, the Adapter determines how data is persisted to a backend data store, such as the URL format and headers

2016-11-30 16:49:06
Relationships

Relationships Ember Data includes several built-in relationship types to help you define how your models relate to each other.

2016-11-30 16:53:02