最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Backbone.js global error handling - Stack Overflow

programmeradmin0浏览0评论

I am writing website with usage of Backbone.js for web front end and own RESTful server for API back end. My API (RESTful) server requires manual authorization and expects security token in "Authorization" header. If security token is deprecated or broken, API server will return response with 401 status code. I override Backbone.sync to send additional headers with requests and returning options.error(jqXHR.status) on AJAX error.

How can I add global error events listener to handle options.error(...) events on failed resources loading? I need it to make navigation redirect to /#!/signin page on 401 Unauthorized response.

I am writing website with usage of Backbone.js for web front end and own RESTful server for API back end. My API (RESTful) server requires manual authorization and expects security token in "Authorization" header. If security token is deprecated or broken, API server will return response with 401 status code. I override Backbone.sync to send additional headers with requests and returning options.error(jqXHR.status) on AJAX error.

How can I add global error events listener to handle options.error(...) events on failed resources loading? I need it to make navigation redirect to /#!/signin page on 401 Unauthorized response.

Share edited Jul 26, 2011 at 15:19 Eugene Manuilov asked Jul 26, 2011 at 13:55 Eugene ManuilovEugene Manuilov 4,3618 gold badges34 silver badges48 bronze badges 3
 |  Show 3 more ments

2 Answers 2

Reset to default 10

you could try to use the jQuery Global Ajax Event Handler:

http://api.jquery./category/ajax/global-ajax-event-handlers/

You simply bind the .ajaxError event to the body or your application element and filter 401 status codes.

On a 401 error you redirect your application like window.yourAppRouter.navigate(...)

In a similar vein to the suggestion of Global Ajax Event Handler, you can handle this via the jQuery ajaxSetup method: https://stackoverflow./a/19981363/886153

发布评论

评论列表(0)

  1. 暂无评论