1
我想通過POST方法通過AJAX發送數據到php。 PHP代碼:XmlHttpRequest POST數據爲空
<?php
print_r($_POST);
JavaScript代碼:
var xml = new XMLHttpRequest();
xml.open("POST", "test.php", false);
xml.send("a=X");
document.write(xml.responseText);
結果是:
Array ()
爲什麼isn't在陣列並[a] => 「X」?數組每次都是空的。我在Apache 2.4.10上使用PHP 5.6.3(XAMPP v3.2.1)。
什麼'test.php'印刷? – philtune
空數組'Array()' – Misaz