admin管理员组文章数量:1342656
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.
2 Answers
Reset to default 10you 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
本文标签: javascriptBackbonejs global error handlingStack Overflow
版权声明:本文标题:javascript - Backbone.js global error handling - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743692221a2522899.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论