简体   繁体   中英

JSF Handle served-side exception in browser with A4J

Can A4J handle a situation in which ajax call to a server ends with an exception? By handle I mean can it for instance present user with a dialog box stating that an exception has occured? The default behaviour of A4J in presence of a server side exception is to just do nothing which is somewhat misleading.

Yes.

You can do it with A4J :

add this to your javascript on any page:

A4J.AJAX.onError = function(req, status, message){

    window.alert("Custom onError handler "+message);

}

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