AjaxPro 和 OnTimeOut 错误

发布于 2024-07-25 22:34:49 字数 252 浏览 7 评论 0原文

我在我的 AjaxPro 项目中遇到以下错误:

Error: this.onTimeout is not a function
Source: http://localhost:3405/ajaxpro/core.ashx
Line: 407

我知道这与 AjaxPro 的发布有关,但是你们中有人有不包含该错误的版本吗? 或者我该如何纠正? 我已经从 AjaxPro.info 下载了最新版本,但没有任何运气。

I am getting the following error on my AjaxPro project:

Error: this.onTimeout is not a function
Source: http://localhost:3405/ajaxpro/core.ashx
Line: 407

I know it is something to do with the release of AjaxPro, but does any of you have a version which doesn't contain that error? Or how can I correct it?
I have downloaded the latest version from AjaxPro.info, without any luck.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

吝吻 2024-08-01 22:34:49

请使用异步调用,就像在 JavaScript 中一样:

function getServerTime()
{
  test_Default8.GetServerTime(getServerTime_callback);  // asynchronous call
}

// This method will be called after the method has been executed
// and the result has been sent to the client.

function getServerTime_callback(res)
{
  alert(res.value);
}

这将解决您的问题。

Please use asynchronous call, like in JavaScript:

function getServerTime()
{
  test_Default8.GetServerTime(getServerTime_callback);  // asynchronous call
}

// This method will be called after the method has been executed
// and the result has been sent to the client.

function getServerTime_callback(res)
{
  alert(res.value);
}

This will solve your problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文