解决方案 »

  1.   

                            Ext.Ajax.request({
                                url: "abc.aspx",
                                params: {id: Ext.getCmp('id').getValues()},
                                method: 'post',
                                success: function (response) {
    ...
                                },
                                failure: function (response) {
                                   ...
                                }
                            });采用post方式提交数据 即可获得和submit提交数据一样的效果