3

我想写一个listener会监听所有网络请求错误的东西,像这样:

Ext.Ajax.on('requestexception', function(conn, response, options) {
    if (response.status === 555) {
        Ext.Msg.alert('test', 'test');
    }
});

上面的代码仅适用于通过的请求Ext.Ajax.request(),如何重写它以便它也适用于表单提交、url not found 错误等。

在服务器端,我有调度所有请求的 Spring MVC,如果有,则返回error的响应状态。555

form.submit({
     url: dispatcher.getUrl('savePlanRequest'),
     //headers: {'Content-Type':'multipart/form-data; accept-charset=utf-8'},
     scope: this,
     method: 'GET',
     params: {
         scan: scan_id,
         attachments: attachments_id,
         parcels: parcels_id
     },
     success: function(form, action) {
         this.fireEvent('plansaved', this);
         Ext.Msg.alert(i18n.getMsg('success'), i18n.getMsg('gsip.view.plans.NewPlanForm.success_info'))
     },
     failure: function(form, action) {
         console.log('failure');
         //Ext.Msg.alert(i18n.getMsg('failure'), action.result.msg);
     }
 });
4

2 回答 2

2

这应该有效:

Ext.override( Ext.form.action.Submit, { 
    handleResponse : function( response ) {

        var form = this.form,
            errorReader = form.errorReader,
            rs, errors, i, len, records;

        if (errorReader) {
             rs = errorReader.read(response);
             success = rs.success;
             // Do something if success is false
        }

        this.callParent ( arguments ); 
    }
});

查看源代码handleResponse(),了解我复制上述大部分代码的确切方法。

于 2012-07-24T14:23:58.800 回答
1

恕我直言,您不需要覆盖任何内容。您可以在 Ext.Ajax 单例上放置一个侦听器,如下所述:

覆盖 Ext.data.Connection - 最佳实践

另一种选择是使用 Ext.util.Observable.observe() 函数,如下所述:

http://www.sencha.com/forum/showthread.php?172269-Global-connection-handler-for-500-404-403-response-codes

Ext.util.Observable.observe(Ext.data.Connection);

Ext.data.Connection.on('requestexception', function(conn, response, options, eOpts) {
    //...handle it
});
于 2013-01-15T16:01:36.833 回答