gpt4 book ai didi

javascript - 创建全局 Backbone.js 错误 View

转载 作者:行者123 更新时间:2023-11-30 05:43:31 25 4
gpt4 key购买 nike

我想创建一个全局错误处理 Backbone.js View 。此 View 应该能够处理所有服务器错误并通过在 UI 上显示适当的消息来使用react。任何人都可以帮助实现这一目标吗?

最佳答案

var NotificationView = Backbone.view.extend({

initialize: function () {
//add your error dialogue window to body.

$(document).ajaxComplete(function (event, xhr, settings) {

try {
//if you want to send error message from server side.
if(xhr.status === 500) {
result = $.parseJSON(xhr.responseText);
this.show(result.message);
}
else if (xhr.status !== 200) { //sucess
this.show("Something is not right !!!");
}

if(xhr.status === 200) {
//success
}
} catch(error) {}
});
},

show: function(message) {
//show your dialogue with message.
},

hide: function() {
//hide dialogue.
}
});

var notify = new NotificationView();

关于javascript - 创建全局 Backbone.js 错误 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19394119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com