Class DS.DateTransform

The DS.DateTransform class is used to serialize and deserialize date attributes on Ember Data record objects. This transform is used when date is passed as the type parameter to the DS.attr function. It uses the ISO 8601 standard.

app/models/score.js
1
2
3
4
5
6
7
import DS from 'ember-data';

export default DS.Model.extend({
   value: DS.attr('number'),
   player: DS.belongsTo('player'),
   date: DS.attr('date')
 });

Show:

Module: ember-data
serialized
The serialized value
options
hash of options passed to `DS.attr`
returns
The deserialized value

When given a serialize value from a JSON object this method must return the deserialized value for the record attribute.

Example

1
2
3
deserialize(serialized, options) {
  return empty(serialized) ? null : Number(serialized);
}
Module: ember-data
deserialized
The deserialized value
options
hash of options passed to `DS.attr`
returns
The serialized value

When given a deserialized value from a record attribute this method must return the serialized value.

Example

1
2
3
4
5
import { isEmpty } from '@ember/utils';

serialize(deserialized, options) {
  return isEmpty(deserialized) ? null : Number(deserialized);
}