我有一个 RESTful 服务,当我尝试保存新记录时,它会执行唯一的电子邮件检查。当它失败时,我会返回一个 400 错误代码以及一条带有“错误”值的 JSON 消息。
不幸的是,我保存的错误回调似乎没有触发。有什么建议么?
var nRecord = new RecordModel(values);
nRecord.save({
wait: true,
error: function(model,response){
console.log('error2');
obj.errorHandler(model,response);
},
success: function() {
console.log('success2');
obj.alert('Information saved!','Record Created!','success');
// if there were no errors, clear the list
$('#record-form :input').val('');
}
});
“Error2”永远不会显示在控制台中。想法?