zend 调试器无法识别 jquery post

发布于 2024-09-27 11:58:40 字数 535 浏览 4 评论 0原文

当使用 jquery post 发布表单时,ZendDebugger 失去了跟踪。

例如,我有一个文件index.php,它将按钮帖子提交到“formContent.php”。类似于:

//index.php 
 $("#formMiData").submit(function(){ 
      $.post("formContent.php", $("#formMiData").serialize(),
      function(data){
       $("#salidaAjax").html(data); 
      });  
      return false;

     });

我在index.php和formContent.php的开头添加了一个断点。 调试器在index.php 中的断点处停止,但不在formContent.php 处的断点处停止。

这是它的工作方式吗? o 调试器应该找到“formContent.php”?

我花了很多时间试图让调试器工作,但也许在这种情况下不工作......

When posting forms using jquery post, the ZendDebugger lost its track.

For example, I have a file index.php wich submit button post to "formContent.php". something like:

//index.php 
 $("#formMiData").submit(function(){ 
      $.post("formContent.php", $("#formMiData").serialize(),
      function(data){
       $("#salidaAjax").html(data); 
      });  
      return false;

     });

I add a breakpoint to the begining of index.php and formContent.php.
The debugger stops at the breakpoint in index.php, but not at the breakpoint at formContent.php.

Is this the way it works? o the debugger should find "formContent.php"?

I spent a lot of time trying to make the debugger work, but maybe is not suppose to work in this case...

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

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

发布评论

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

评论(1

日记撕了你也走了 2024-10-04 11:58:40

我发现问题是Eclipse中的服务器配置不正确。我必须配置服务器并使用 url 映射目录。

I found the problem, the server configuration was not right in Eclipse. I had to configure the server and map the directories with the url.

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