我正在尝试为我的模型覆盖Backbone.sync方法。
服务器返回状态:200 OK,模型会在所有情况下触发成功回调。
服务器响应如下
状态:200 OK
回复:{ statusCode:' 0&#39 ;; // 0成功,1,2,3错误 ... }
我已经覆盖了sync函数以抛出错误回调,案例工作正常并抛出错误回调
虽然我无法将任何自定义选项传递给错误回调。
sync : function(method, model, options) {
var self = this, config = {};
var newError = function(method, success, error) {
return function(response, textStatus, jqXHR) {
if (response.statusCode === '0' && _.isFunction(success)) {
success(response, textStatus, jqXHR);
} else if (_.isFunction(error)) {
switch (response.statusCode) {
case '1':
//response.statusCode: '2'
//response.statusMessage: 'Servers error 1!”
textStatus = 'Servers error 1!';
break;
case '2':
//response.result: 'Server error 2'
//response.statusCode: '2'
textStatus = 'Servers error 1';
break;
}
error(response, jqXHR, textStatus ); //arguments fail maybe backbone overrides them before firing my error callback
}
};
};
config.success = newError(method, options.success, options.error);
// add API call configuration to the `options` object
options = _.extend(options, config);
return Backbone.Model.prototype.sync.call(this, method, model, options);
}
//调用以下错误回调,但邮件未传递给它
model.save(data,{
success : successCB,
error : function(args){
alert('error'); //works
//args.textStatus or something similar passed from above sync logic
}
})
我知道这条线路出了问题。 错误(响应,jqXHR,textStatus);
请告诉我如何传递textStatus或错误回调
的其他选项答案 0 :(得分:0)
似乎是错误函数中参数顺序的问题。签名应为(jqXHR jqXHR, String textStatus, String errorThrown)
。
答案 1 :(得分:0)
以下要点帮助common.js
从上面的要点,行号106到128通过添加以下行来解决问题
response.done(function(){
if(response.responseJSON.statusCode &&
response.responseJSON.statusCode === '0'){
response.done(deferred.resolve);
} else {
deferred.rejectWith(response, arguments);
}
});
感谢您的回复,虽然更改参数序列没有帮助