I have a basic Ember application and am trying to handle validation errors on save (the model uses the REST Adapter). In my route, I do:
task.save().then( function() {alert("success");}, function() {alert("fail");} ).catch( function() {alert("catch error");} );
When the record is valid, I get a success warning, but when the record is invalid, I don't get a fail or catch error warning. In the console, I get:
POST http:
The answer from api is as follows:
{"errors":{"name":["can't be blank"],"parent_task":[]}}
I am using Ember Data 1.13.
source share