如何使用 WebOS 捕获异常? Ajax调用

发布于 2025-01-03 08:38:55 字数 589 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虐人心 2025-01-10 08:38:55

在我的 Mojo 应用程序中,我使用 Ajax.Request

我定义了 onComplete 处理程序,如下所示:

onComplete: function(resp) {
  var resultCode = resp.getStatus();
  if ((resultCode > 0) && (resultCode < 200)) {
    ...
  } else {
    ...
  }

In my Mojo apps I used Ajax.Request

I defined the onComplete handler like this:

onComplete: function(resp) {
  var resultCode = resp.getStatus();
  if ((resultCode > 0) && (resultCode < 200)) {
    ...
  } else {
    ...
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文