我正在使用 Backbone.js 并使用带有选项的 fetch,但它似乎没有收到错误或成功回调,但是正在返回数据。
this.user.fetch({data: {username : this.username.val(), check : 'true'}}, {
error: function(model, response) {
console.log(response);
},
success: function(model, response) {
console.log(response);
}
});
这就是我的设置,我错过了什么吗?它永远不会遇到错误或成功,但它会执行 ajax 请求并返回数据。
谢谢!