DS.InvalidError

DS.InvalidError Class

Defined in: addon/adapters/errors.js:121

Module: ember-data

A DS.InvalidError is used by an adapter to signal the external API was unable to process a request because the content was not semantically correct or meaningful per the API. Usually this means a record failed some form of server side validation. When a promise from an adapter is rejected with a DS.InvalidError the record will transition to the invalid state and the errors will be set to the errors property on the record.

For Ember Data to correctly map errors to their corresponding properties on the model, Ember Data expects each error to be a valid json-api error object with a source/pointer that matches the property name. For example if you had a Post model that looked like this.

app/models/post.js
import DS from 'ember-data';

export default DS.Model.extend({
  title: DS.attr('string'),
  content: DS.attr('string')
});

To show an error from the server related to the title and content properties your adapter could return a promise that rejects with a DS.InvalidError object that looks like this:

app/adapters/post.js
import Ember from 'ember';
import DS from 'ember-data';

export default DS.RESTAdapter.extend({
  updateRecord() {
    // Fictional adapter that always rejects
    return Ember.RSVP.reject(new DS.InvalidError([
      {
        detail: 'Must be unique',
        source: { pointer: '/data/attributes/title' }
      },
      {
        detail: 'Must not be blank',
        source: { pointer: '/data/attributes/content'}
      }
    ]));
  }
});

Your backend may use different property names for your records the store will attempt extract and normalize the errors using the serializer's extractErrors method before the errors get added to the the model. As a result, it is safe for the InvalidError to wrap the error payload unaltered.

© 2017 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
https://emberjs.com/api/data/classes/DS.InvalidError.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部