当获取失败时,让我的所有 Backbone 模型做出相同的反应

发布于 2024-12-23 16:21:47 字数 103 浏览 0 评论 0原文

我正在锁定一种方式,其中我的所有集合和模型都使用相同的逻辑在获取或保存失败时显示错误。但我不想重新编写 onError 回调。目标是让方法在失败时根据响应的 http 错误代码打开错误对话框。

I'm locking for a way, where all my collections and models use the same logic to display errors when fetch or save fail. But I dont wanna wrote the onError callback all over again. The goal is to have on methode that open error dialogs depending on the http error code of the response when it fails.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玻璃人 2024-12-30 16:21:47

另一种方法是创建一个基本模型和集合,并让您的模型和集合扩展它们而不是 Backbone 的:

var BaseModel = Backbone.Model.extend({
  onSyncError: function(model, response) {
    // your error-handling code
  },

  onSyncSuccess: function(model, response) {
    // do stuff if successful
  },

  // Backbone will call your 'sync' if it exists
  sync: function(method, model, options) {
    options.error = this.onSyncError;
    options.success = this.onSyncSuccess;
    Backbone.sync.call(this, method, model, options);
  }
});

然后在您的模型中:

var MyModel = BaseModel.extend({
  // model stuff
});

Another way to do it would be to create a base model and collection and have your models and collections extend those instead of Backbone's:

var BaseModel = Backbone.Model.extend({
  onSyncError: function(model, response) {
    // your error-handling code
  },

  onSyncSuccess: function(model, response) {
    // do stuff if successful
  },

  // Backbone will call your 'sync' if it exists
  sync: function(method, model, options) {
    options.error = this.onSyncError;
    options.success = this.onSyncSuccess;
    Backbone.sync.call(this, method, model, options);
  }
});

And then in your model:

var MyModel = BaseModel.extend({
  // model stuff
});
独闯女儿国 2024-12-30 16:21:47

想了想,我想到了这个解决方案:

function callback(success){
    this.success = sucess;
}

callback.prototyp.error = function(model, response){
    // central error handling here
}

myModel.save(new callback(myModel.success))

Thinking about it, I came up with this solution:

function callback(success){
    this.success = sucess;
}

callback.prototyp.error = function(model, response){
    // central error handling here
}

myModel.save(new callback(myModel.success))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文