zend 调试器无法识别 jquery post
当使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现问题是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.