如何使用 WebOS 捕获异常? Ajax调用
我正在使用 mojo 框架开发 WebOS 2.x 应用程序。我使用 Foundation。 Comms.AjaxCall
发出 ajax 请求。当一切正常时一切都会顺利。但是,当调用失败或服务器响应错误时,我无法捕获错误信息。
我已经尝试过这个:
var f = AjaxCall.get(url);
f.then(successHandler, failureHandler);
和这个:
var f = AjaxCall.get(url);
f.onError(failureHandler);
f.then(successHandler);
它们都不起作用。出现错误时,永远不会调用 failureHandler
。
出现错误时有什么方法可以通知吗?
I'm developing a WebOS 2.x app with mojo framework. I use Foundations.Comms.AjaxCall
to make ajax request. It goes well when everything is OK. However, when the call fails or the server response an error, I can't catch the error information.
I have tried this:
var f = AjaxCall.get(url);
f.then(successHandler, failureHandler);
and this:
var f = AjaxCall.get(url);
f.onError(failureHandler);
f.then(successHandler);
neither of them works. failureHandler
is never called when there is an error.
Is there any way to be informed when there is an error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我的 Mojo 应用程序中,我使用 Ajax.Request
我定义了 onComplete 处理程序,如下所示:
In my Mojo apps I used Ajax.Request
I defined the onComplete handler like this: