在 Ext.ajax 请求上添加例外 Ext JS 6

Adding exceptions on Ext.ajax requests Ext JS 6

我想为所有 AJAX 请求添加 400、500 例外。这是我针对每个 AJAX 请求为 beforeload 所做的。

Ext.define('Inertia.view.BaseUrl', {
singleton : true,
constructor : function(config) {

    this.initConfig(config);
    Ext.Ajax.on('beforerequest', this.onBeforeRequest, this);
},

onBeforeRequest : function(connection, options) {
    options.headers = {
        'token': 'random-token',
        'code': 'random-codeABC'
    };
}

 });

现在我想为所有请求添加一个异常,如果请求以某种方式没有加载我想捕获一个异常。我该怎么做 我试过了,但没用

Ext.define('Inertia.view.BaseUrl', {
singleton : true,
constructor : function(config) {

    this.initConfig(config);
    Ext.Ajax.on('beforerequest', this.onBeforeRequest, this);
    Ext.Ajax.on('exception', this.exception, this);
},

onBeforeRequest : function(connection, options) {
    options.headers = {
        'token': 'random-token',
        'code': 'random-codeABC'
    };
},
 exception: function (){
     alert('An Exception occured...!');
   }
 });

您可以像下面这样使用它:-

/**
 * @ajaxrequest error handling
 */
Ext.Ajax.on('requestexception', function (conn, response, options, eOpts) {
    try {
        alert(response.status);
    } catch (error) {
        console.log(error);
    }
});

或者像这样:-

requestexception: function (conn, response, options, eOpts) {
    try {
        alert(response.status);
    } catch (error) {
        console.log(error);
    }
}