ember-data api中的错误响应

时间:2016-08-21 15:33:29

标签: ember.js ember-data

我将文档保存到API的代码就像那样

    save(category) {
        category.save().then(() => {
            this.transitionTo('categories');
        }).catch((adapterError) => {
            console.log(category.get('errors').toArray());
            console.log(category.get('isValid'));
        });
    }, 

当API答案是:

  

{“errors”:[{“attribute”:“name”,“message”:“此值不应为空。”}]}

然后

  

category.get('isValid')

仍然返回true。

我的问题是,验证错误应该如何?

1 个答案:

答案 0 :(得分:1)

默认情况下,当状态代码为422时,ember-data的适配器确定响应无效。您可以覆盖适配器的isInvalid功能以更改此功能。

此外,ember-data现在希望将错误格式化为json-api错误对象。如果你的后端没有以这种格式返回它,你可以通过覆盖适配器的handleResponse函数来转换它。

这是json-api错误示例:

{"errors": [
  {
    "detail": "Must be unique",
    "source": { pointer: "/data/attributes/title"}
  },
  {
    "detail": "Must not be blank",
    "source": { pointer: "/data/attributes/content"}
  }
]}

如果您返回上述错误响应,则必须在适配器中执行以下操作:

handleResponse(status, headers, payload) {                                                                                                                                                                                               
  if (status === 422 && payload.errors) {                                                                                                                                                                                                
    let jsonApiErrors = [];                                                                                                                                                                                                              

    for (let key in payload.errors) {                                                                                                                                                                                                    
      for (let i = 0; i < payload.errors[key].length; i++) {                                                                                                                                                                             
        jsonApiErrors.push({                                                                                                                                                                                                             
          detail: payload.errors[key][i],                                                                                                                                                                                                
          source: {                                                                                                                                                                                                                      
            pointer: `data/attributes/${key}`                                                                                                                                                                                            
          }                                                                                                                                                                                                                              
        });                                                                                                                                                                                                                              
      }                                                                                                                                                                                                                                  
    }                                                                                                                                                                                                                                    

    return new DS.InvalidError(jsonApiErrors);                                                                                                                                                                                           
  } else {                                                                                                                                                                                                                               
    return this._super(...arguments);                                                                                                                                                                                                    
  }                                                                                                                                                                                                                                      
}