简体   繁体   中英

Redirect to other view after timeout

I´ve implemented a proxy with a listener with the next exception :

listeners: {
            exception: function () {
                Ext.Msg.alert(BB.Text.getText('ERROR_TIMEOUT_TITLE'), BB.Text.getText('ERROR_TIMEOUT_MSG') + '' + PROXY_TIMEOUT, Ext.emptyFn);
                Ext.redirectTo('http://www.google.es');  //for example
            }
        }

After the message I would like to redirect to other page / view but It is not working correctly

What am I doing wrong??

Thanks.

For Sencha Touch

You probably want to read the documentation:

Documentation

http://docs.sencha.com/touch/2.4/apidocs/#!/api/Ext.app.Application-method-redirectTo

Quote

Redirects the browser to the given url. This only affects the url after the '#'.

Read the second part very carefully. By the way this is the same as :

MyApp.app.redirectTo('http://www.google.es')

It take it from your post that you want to redirect to a different page inside a webapp . Can be found here

WebApp: window.location.href = "http://www.google.es"

我认为以下内容可以解决您的目的。

Ext.app.Application.redirectTo('http://www.google.es');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM