适用于Visual Studio的PHP工具。如何调试AJAX请求?

时间:2015-03-16 07:02:40

标签: php ajax debugging visual-studio-2012

我有关于PHP的小项目,我想用Visual Studio的PHP工具进行调试。它工作正常,调试器工作得很好。但是我的项目的一部分作为服务工作,它从html页面监听AJAX请求并以JSON格式发送响应。在这种情况下,调试器根本不起作用。我在我的php服务文件中设置了断点,它永远不会触发,但我在客户端获得了正确的响应。所以,我的问题是如何使用PHP工具调试AJAX请求?

我举了一个客户端和服务器代码示例来说明我的问题。

server.php

<?php

if(isset($_REQUEST['response'])) {
    echo json_encode('ok'); 
}
else {
    echo json_encode('cancel'); 
}

?>

client.html

<!DOCTYPE HTML>
<html>
<head>
   <title>AJAX test</title>
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>

   <script type="text/javascript">
    $( document ).ready(function() {
        $( "#request" ).bind( "click", function() {
            var data = { response: "response" };

            $.ajax({
                url: "server.php",
                type: "POST",
                async: false,
                timeout: 5000,
                dataType: "json",
                data: data,
                success: function(result) {
                    $("#response").text(result);
                },
                error: function(error) {
                    $("#response").html(error.responseText);
                }
            }); 
        });
    });

  </script>
</head>

<body>
   <p>
     <b>Request: </b> <span id="request"><a href="#">Send request</a></span>
   </p>
   <p>
     <b>Response: </b> <span id="response">Here will be your response...</span>
   </p>
</body>

</html>

因此,当我在if-statement行上的server.php中设置断点时,它不会触发,但是客户端成功接收服务器响应。

1 个答案:

答案 0 :(得分:3)

我在DEVSENSE forum找到了解决方案 在这种情况下,xdebug不知道何时应该开始调试。简单的方法是在下一行添加到php.ini:

xdebug.remote_autostart = on

一切正常!