之前我做了很多次,所以我真的很困惑为什么没有通过任何东西。我已经尝试过打印结果(脚本获得响应并打印文件)。
function submit_form_inpage(path, data, watchForChange){
alert(data);
watchForChange = watchForChange || false;
var request = new XMLHttpRequest();
request.open('POST', path, true);
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
if (watchForChange == true) {
request.onreadystatechange = function () {
if (request.readyState == 4) {
document.write(request);
if (request.status==200 && request.status < 400){
var xmldata=request.responseText //retrieve result as an XML object
alert("XML:" + xmldata);
}
else{
alert("An error has occured making the request:" + request.status );
}
}
}
}
var temp_string = array_to_string_for_post(data);
var temp = JSON.stringify(data);
alert(temp);
request.send(temp);
}
我的php是
print_r($_POST);
我的结果是
XML: Array ()
尽管传入的数据(在我的警报发送之前进行了双重检查)是
{"reason":"get_stuff","build_name":"test"}
答案 0 :(得分:2)
你说你要发送表格编码数据。
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
然后你发了:
temp = JSON.stringify(data);
JSON是application/json
而非application/x-www-form-urlencoded
(并且PHP本身并不支持)。
将您的数据编码为application/x-www-form-urlencoded
或更正您的内容类型和parse it manually in PHP。