如何处理backbone.js中的服务器错误?

发布于 2024-12-19 21:12:45 字数 111 浏览 1 评论 0原文

Backbonejs 中,使用 fetch() 时如何处理任何服务器错误?

In Backbonejs, how do I handle any server errors when using fetch()?

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

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

发布评论

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

评论(1

强者自强 2024-12-26 21:12:45

如果您从技术上问如何响应错误,那么:

有几种方法可以做到这一点。

最直接的是各种“交易”函数支持传递成功和错误回调:

myModel.save({property: "value", property2: "value2"},{success: function(model,response){...}, error: function(model,response){...}});

或者,在coffeescript中:

myModel.save
  property: "value"
  property2: "value2
,
  success: (model, response) ->
    ...
  error: (model, response) ->
    ...

另一种方法是,由于Backbone在幕后使用jquery.ajax,因此使用 jquery.ajaxError 处理程序。

如果您正在寻找如何从“产品”的角度来看处理错误的策略,我想这取决于您正在做什么。

If you're asking, technically, how to respond to an error, then:

There's a couple ways to do this.

The most straightforward is that the various "transaction" function support passing success and error callbacks:

myModel.save({property: "value", property2: "value2"},{success: function(model,response){...}, error: function(model,response){...}});

or, in coffeescript:

myModel.save
  property: "value"
  property2: "value2
,
  success: (model, response) ->
    ...
  error: (model, response) ->
    ...

The other way is to, since Backbone uses jquery.ajax behind the scenes, use the jquery.ajaxError handler.

If you're looking for strategy on how, from a "product" standpoint, to handle errors, I guess it depends on what you're doing.

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