A serializer in Ember Data is used to format data as it is transferred between the client and the server. When a serializer formats response data, this process is called normalization . In contrast, when a serializer formats data sent to the server, this process is called serialization .
- 1.
JSONSerializer
- 2.
RESTSerializer
- 3.
JSONAPISerializer
Each one of these serializers targets a specific API payload structure. In order to get a custom API working with Ember Data, it ...