我正在尝试使用 xdebug 来掌握 netbeans (PHP)。
我发现进行调试的方法通常是在 netbeans 中设置 URL,例如
http://localhost/muster/index.php?module=Wind&Action=Test
然后点击调试按钮,但我该怎么做才能调试 POST 请求?例如
.js 文件中有一个 javascript 函数,它使用 POST 调用 php 文件,它是这样的:
new Ajax.Request(
'index.php',
{
queue: {position: 'end', scope: 'command'},
method: 'post',
postBody: "module=Wine&action=WineAjax&return_id="+id,
onComplete: function(response)
{ ....
如何设置 URL 以开始调试?
非常感谢您的任何意见!