Extends: Ember.Object
Uses: Ember.Enumerable
Uses: Ember.Evented
Defined in: addon/-private/system/model/errors.js:15
Module: ember-data
Holds validation errors for a given record, organized by attribute names.
Every DS.Model has an errors property that is an instance of DS.Errors. This can be used to display validation error messages returned from the server when a record.save() rejects.
For Example, if you had a User model that looked like this:
app/models/user.jsimport DS from 'ember-data';
export default DS.Model.extend({
username: attr('string'),
email: attr('string')
});
And you attempted to save a record that did not validate on the backend:
var user = store.createRecord('user', {
username: 'tomster',
email: 'invalidEmail'
});
user.save();
Your backend would be expected to return an error response that described the problem, so that error messages can be generated on the app.
API responses will be translated into instances of DS.Errors differently, depending on the specific combination of adapter and serializer used. You may want to check the documentation or the source code of the libraries that you are using, to know how they expect errors to be communicated.
Errors can be displayed to the user by accessing their property name to get an array of all the error objects for that property. Each error object is a JavaScript object with two keys:
message A string containing the error message from the backendattribute The name of the property associated with this error message<label>Username: {{input value=username}} </label>
{{#each model.errors.username as |error|}}
<div class="error">
{{error.message}}
</div>
{{/each}}
<label>Email: {{input value=email}} </label>
{{#each model.errors.email as |error|}}
<div class="error">
{{error.message}}
</div>
{{/each}}
You can also access the special messages property on the error object to get an array of all the error strings.
{{#each model.errors.messages as |message|}}
<div class="error">
{{message}}
</div>
{{/each}}
Adds error messages to a given attribute without sending event.
Removes all error messages. to the record.
Register with target handler
Removes all error messages from the given attribute without sending event.
Adds error messages to a given attribute and sends becameInvalid event to the record.
Example:
if (!user.get('username') {
user.get('errors').add('username', 'This field is required');
}
String
(Array|String)
Removes all error messages and sends becameValid event to the record.
Example:
app/routes/user/edit.jsimport Ember from 'ember';
export default Ember.Route.extend({
actions: {
retrySave: function(user) {
user.get('errors').clear();
user.save();
}
}
});
Array
Returns errors for a given attribute
var user = store.createRecord('user', {
username: 'tomster',
email: 'invalidEmail'
});
user.save().catch(function(){
user.get('errors').errorsFor('email'); // returns:
// [{attribute: "email", message: "Doesn't look like a valid email."}]
});
String
Array Boolean
Checks if there is error messages for the given attribute.
app/routes/user/edit.jsimport Ember from 'ember';
export default Ember.Route.extend({
actions: {
save: function(user) {
if (user.get('errors').has('email')) {
return alert('Please update your email before attempting to save.');
}
user.save();
}
}
});
String
Boolean Register with target handler
Object
Function
Function
Removes all error messages from the given attribute and sends becameValid event to the record if there no more errors left.
Example:
app/models/user.jsimport DS from 'ember-data';
export default DS.Model.extend({
email: DS.attr('string'),
twoFactorAuth: DS.attr('boolean'),
phone: DS.attr('string')
});
app/routes/user/edit.jsimport Ember from 'ember';
export default Ember.Route.extend({
actions: {
save: function(user) {
if (!user.get('twoFactorAuth')) {
user.get('errors').remove('phone');
}
user.save();
}
}
});
String
{Array}private
{Ember.MapWithDefault}private
{Boolean}
{Number}
Total number of errors.
{Array}
An array containing all of the error messages for this record. This is useful for displaying all errors to the user.
{{#each model.errors.messages as |message|}}
<div class="error">
{{message}}
</div>
{{/each}}
© 2017 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
http://emberjs.com/api/data/classes/DS.Errors.html