XmlHttpRequest POST数据为空

时间:2014-12-22 22:16:56

标签: javascript php arrays ajax post

我试图通过POST方法通过AJAX将数据发送到php。 PHP代码:

<?php
print_r($_POST);

JavaScript代码:

var xml = new XMLHttpRequest();
xml.open("POST", "test.php", false);
xml.send("a=X");
document.write(xml.responseText);

结果是:

Array ( )

为什么不在数组[a] =&gt; “X”?数组每次都是空的。我在Apache 2.4.10(XAMPP v3.2.1)上使用PHP 5.6.3。

1 个答案:

答案 0 :(得分:1)

您未设置内容类型

var xml = new XMLHttpRequest();
xml.open("POST", "test.php", false);
xml.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xml.send("a=X");