Class DS.Serializer

DS.Serializer is an abstract base class that you should override in your application to customize it for your backend. The minimum set of methods that you should implement is:

  • extract()
  • serialize()

And you can optionally override the following methods:

  • normalize()

For an example implementation, see DS.JSONSerializer, the included JSON serializer.

Show:

Module: ember-data

The store property is the application's store that contains all records. It's injected as a service. It can be used to push records from a non flat data structure server response.