Javascript-форум (https://javascript.ru/forum/)
-   ExtJS (https://javascript.ru/forum/extjs/)
-   -   отловить 502 Bad Gateway для Ajax (https://javascript.ru/forum/extjs/65935-otlovit-502-bad-gateway-dlya-ajax.html)

prihod 16.11.2016 14:32

отловить 502 Bad Gateway для Ajax
 
Периодически сервер возвращает 502 Bad Gateway хочу его обработать но почему то он не попадает в обработчик, а появляется сообщение об этом в консоли браузера
ext-base.js:21 POST [url]http://site.ru/connector.php[/url] 502 (Bad Gateway)

i @ ext-base.js:21
request @ ext-base.js:21
request @ ext-all.js:21
request @ modx.js?v=065c0bd8:503
_import @ import.panel.js:665
fn @ import.panel.js:685
_runCallback @ modx.js?v=065c0bd8:518
success @ modx.js?v=065c0bd8:477
handleResponse @ ext-all.js:21f @ ext-base.js:21
m @ ext-base.js:21
(anonymous function) @ ext-base.js:21


Ext.Ajax.request({
            url: ''
            , params: params
            , listeners: {
                'success': {
                    fn: function (e) {
                        console.log("success!!",e);
                    }, scope: this
                }
                , failure: {
                    fn: function (r) {
                        console.log("failure!!",r);
                       
                    }, scope: this
                }
            }
        });

siber-biber 16.11.2016 17:29

Ext.Ajax.on({
   requestexception : function (ajax, xhr) {
      if (xhr.status == 502) console.log('OMG!);
   }
})

prihod 17.11.2016 13:34

Цитата:

Сообщение от siber-biber (Сообщение 435212)
Ext.Ajax.on({
   requestexception : function (ajax, xhr) {
      if (xhr.status == 502) console.log('OMG!);
   }
})

не сработало

kolka 18.11.2016 16:01

Ext.Ajax.request({
     url: 'ajax_demo/sample.json',
     success: function(response, opts) {
         var obj = Ext.decode(response.responseText);
         console.dir(obj);
     },
     failure: function(response, opts) {
         console.log('server-side failure with status code ' + response.status);
     },
    listeners: {
        requestexception: function (conn , response , options , eOpts) {

            ....

        }
    }
 });

prihod 22.11.2016 12:05

Цитата:

Сообщение от kolka (Сообщение 435427)
Ext.Ajax.request({
     url: 'ajax_demo/sample.json',
     success: function(response, opts) {
         var obj = Ext.decode(response.responseText);
         console.dir(obj);
     },
     failure: function(response, opts) {
         console.log('server-side failure with status code ' + response.status);
     },
    listeners: {
        requestexception: function (conn , response , options , eOpts) {

            ....

        }
    }
 });

тоже не сработало

prihod 22.11.2016 12:41

в общим нашел в чем был прикол, оказывается перед там как срабатывал обработчик failure Ext.Window генерировал ошибку и дело до failure не доходило.

xShift 04.01.2017 19:40

example code please


Часовой пояс GMT +3, время: 21:47.