在Firefox 28.0中进行简单的XHR POST后,我的服务器php脚本POST数组为空。请求是同一个来源。
在触发请求的js脚本中我有:
$(function(){
$("#head").click(function(){
var invocation=new XMLHttpRequest();
var url="test.php";
var body="hello";
if (invocation)
{
invocation.open("POST",url, true);
invocation.onreadystatechange=handler;
invocation.send(body);
}
function handler(evtXHR){
if(invocation.readyState===4)
{
if(invocation.status===200)
{
alert("success");
}
}
}
});
});
在我的php文件中,我有:
<?php
header('Access-Control-Allow-Origin: *');
$data=$_POST['body'];
var_dump($data);
?>
以下是客户端和服务器之间的交互:
Request Method: POST
Status Code: HTTP/1.1 200 OK
请求标题:
User-Agent: Mozilla/5.0 (X11; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0
Referer: .......
Pragma: no-cache
Host: ..........
Content-Type: text/plain; charset=UTF-8
Content-Length: 5
Connection: keep-alive
Cache-Control: no-cache
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
请求正文: 你好
响应标题
X-Powered-By: PHP/5.2.17
Transfer-Encoding: chunked
Server: Apache
Keep-Alive: timeout=5, max=100
Date: Wed, 16 Apr 2014 19:04:55 GMT
Content-Type: text/html
Connection: Keep-Alive
access-control-allow-origin: *
请帮助弄清楚发生了什么。成功请求后为什么POST数组为空? 感谢。
答案 0 :(得分:0)
您将请求正文编码为纯文本。 PHP没有将其解析为$_POST
。
访问原始邮件正文...
file_get_contents('php://input')
或以PHP可以理解的格式对请求中的数据进行编码。
var data="hello";
var body = "someKeyName=" + encodeURIComponent(data);
// ...
invocation.open("POST",url, true);
invocation.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
invocation.send(body);
和
$data=$_POST['someKeyName'];