A model is a class that defines the properties and behavior of the data that you present to the user. Anything that the user expects to see if they leave your app and come back later (or if they refresh the page) should be represented by a model.
When you want a new model for your application you need to create a new file
under the models folder and extend from DS.Model
. This is more conveniently
done by using one of Ember CLI's generator commands. For instance, let's create
a person
model:
ember generate model person
This will generate the following file:
import DS from 'ember-data';
export default DS.Model.extend({
});
After you have defined a model class, you can start finding and working with records of that type.
Defining Attributes
The person
model we generated earlier didn't have any attributes. Let's
add first and last name, as well as the birthday, using DS.attr
:
import DS from 'ember-data';
export default DS.Model.extend({
firstName: DS.attr(),
lastName: DS.attr(),
birthday: DS.attr()
});
Attributes are used when turning the JSON payload returned from your server into a record, and when serializing a record to save back to the server after it has been modified.
You can use attributes like any other property, including as part of a computed property. Frequently, you will want to define computed properties that combine or transform primitive attributes.
import DS from 'ember-data';
export default DS.Model.extend({
firstName: DS.attr(),
lastName: DS.attr(),
fullName: Ember.computed('firstName', 'lastName', function() {
return `${this.get('firstName')} ${this.get('lastName')}`;
})
});
For more about adding computed properties to your classes, see Computed Properties.
Transforms
You may find the type of an attribute returned by the server does not
match the type you would like to use in your JavaScript code. Ember
Data allows you to define simple serialization and deserialization
methods for attribute types called transforms. You can specify that
you would like a transform to run for an attribute by providing the
transform name as the first argument to the DS.attr
method. Ember Data
supports attribute types of string
, number
, boolean
, and date
,
which coerce the value to the JavaScript type that matches its name.
import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr('string'),
age: DS.attr('number'),
admin: DS.attr('boolean'),
birthday: DS.attr('date')
});
The date
transform will transform an
ISO 8601 string to a JavaScript
date object.
The boolean
transform can handle values other than true
or
false
. The strings "true"
or "t"
in any casing, "1"
, and the number
1
will all coerce to true
, and false
otherwise.
Transforms are not required. If you do not specify a transform name Ember Data will do no additional processing of the value.
Custom Transforms
You can also create custom transforms with Ember CLI's transform
generator:
ember generate transform dollars
Here is a simple transform that converts values between cents and US dollars.
import DS from 'ember-data';
export default DS.Transform.extend({
deserialize: function(serialized) {
return serialized / 100; // returns dollars
},
serialize: function(deserialized) {
return deserialized * 100; // returns cents
}
});
A transform has two functions: serialize
and deserialize
. Deserialization
converts a value to a format that the client expects. Serialization does the
reverse and converts a value to the format expected by the persistence layer.
You would use the custom dollars
transform like this:
import DS from 'ember-data';
export default DS.Model.extend({
spent: DS.attr('dollars')
});
Options
DS.attr
can also take a hash of options as a second parameter. At the moment
the only option available is defaultValue
, which can use a value or a function
to set the default value of the attribute if one is not supplied.
In the following example we define that verified
has a default value of
false
and createdAt
defaults to the current date at the time of the model's
creation:
import DS from 'ember-data';
export default DS.Model.extend({
username: DS.attr('string'),
email: DS.attr('string'),
verified: DS.attr('boolean', { defaultValue: false }),
createdAt: DS.attr('date', {
defaultValue() { return new Date(); }
})
});