我有一个基本的Ember应用程序,我正在尝试处理保存时的验证错误(模型正在使用REST适配器)。在我的路线中我正在做:
task.save().then(
function() {alert("success");},
function() {alert("fail");}
).catch(
function() {alert("catch error");}
);
当记录有效时,我得到“成功”警告,但是当记录无效时,我没有收到“失败”警报或“捕获错误”。在控制台中我得到:
POST http://localhost:8080/api/tasks 422 (Unprocessable Entity)
Error: The adapter rejected the commit because it was invalid
api的响应如下:
{"errors":{"name":["can't be blank"],"parent_task":[]}}
我正在使用Ember Data 1.13。
答案 0 :(得分:2)
您需要扩展适配器以处理错误,REST适配器不会为您执行此操作(仅限活动模型)
这样的事情:
App.ApplicationAdapter = DS.RESTAdapter.extend({
ajaxError: function(jqXHR) {
var error = this._super(jqXHR);
if (jqXHR && jqXHR.status === 422) {
var response = Ember.$.parseJSON(jqXHR.responseText),
errors = {};
if (response.errors !== undefined) {
var jsonErrors = response.errors;
Ember.EnumerableUtils.forEach(Ember.keys(jsonErrors), function(key) {
errors[Ember.String.camelize(key)] = jsonErrors[key];
});
}
return new DS.InvalidError(errors);
} else {
return error;
}
}
});