GWT 中的默认 AsyncCallback
在做我的应用程序时,我厌倦了总是在 asynccallback onfailure 中实现相同的默认错误处理(显示消息、catch.printstacktrace 等)。
我想知道你是否可以进行通用治疗或标准治疗,类似的东西。
谢谢。
Doing my app, I got bored from always implement the same default error treatment (show a message, caught.printstacktrace and etc..) in the asynccallback onfailure.
I wonder if you can make a generic treatment or standard treatment, something like that.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在使用标准 GWT-RPC。这样的东西可能会有所帮助
,每当您使用服务而不是实例化 AsyncCallback 时,您都可以实例化此类并进行通用错误处理。
I assume you are using standard GWT-RPC. Something like this might help
And whenever you use your service instead of instantiating an AsyncCallback you can instantiate this class and have generalized error handling.