Class DateTransform

public

The 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 attr function. It uses the ISO 8601 standard.

app/models/score.js
1
2
3
4
5
import Model, { attr, belongsTo } from '@ember-data/model';

export default class ScoreModel extends Model {
  @attr('date') date;
 }

@belongsto('player') player;