Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
A4J 可以处理对服务器的 ajax 调用以异常结束的情况吗?通过句柄,我的意思是它可以向用户展示一个对话框,说明发生了异常吗?A4J 在出现服务器端异常时的默认行为是什么都不做,这有点误导。
是的。
你可以用A4J做到这一点:
将此添加到任何页面上的 javascript 中:
A4J.AJAX.onError = function(req, status, message){ window.alert("Custom onError handler "+message); }