即使在 Struts 中的操作返回之前,我也收到空响应

发布于 2024-12-10 17:04:50 字数 148 浏览 0 评论 0原文

当我使用一组特定的参数进行 ajax 调用时,我得到一个空响应(在其他情况下工作正常)。让我感到困惑的是,即使在我的行动返回之前,我也得到了空洞的回应。 即使我的 netbeans 调试器刚刚进入操作类,我也可以在我的 Firebug 控制台中看到错误。 我一无所知,有什么指点吗?

I'm getting an empty response when I do an ajax call with a particular set of parameters (works fine in other cases). The thing that is baffling me is that I get that empty response even before my action has returned.
I can see an error in my firebug console even when my netbeans debugger has just entered the action class.
I'm clueless any pointers?

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

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

发布评论

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

评论(1

残月升风 2024-12-17 17:04:50

请检查您是否正在监控任何 AJAX 调用的就绪状态,例如:

xmlhttp.onreadystatechange=function()
{
   if (xmlhttp.readyState==4 && xmlhttp.status==200)
   {
       document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
   }
}

Please check that you are monitoring the ready state of any AJAX calls, such as the following:

xmlhttp.onreadystatechange=function()
{
   if (xmlhttp.readyState==4 && xmlhttp.status==200)
   {
       document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文