我正在使用此方法将参数发送到我的服务器php,但我得到您发布的值:
function post(path, parameters) {
var http = new XMLHttpRequest();
console.log(parameters);
http.open("POST", path, true);
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.send(parameters);
}
php:
public function tracking_referidos(){
$this->autoRender = false;
$result = array();
$result['post'] = $_POST;
echo json_encode($result);
exit;
}
结果:{"post":{"referrer":"","event":"eventrid","hash":"45hfkabdus"}}
答案 0 :(得分:4)
您正在发送JSON字符串。 PHP不会解码该数据并自动将其映射到$_POST
超级全局。如果您希望PHP执行此操作,则需要将数据发送为application/x-www-form-urlencoded
(即类似于获取请求的URI:key=value&key2=value2
)。
您可以使用application/json
内容类型发送数据,但要获取请求数据,您需要阅读原始帖子正文。您可以在php://input
信息流中找到该信息。只需使用file_get_contents
即可阅读:
$rawPostBody = file_get_contents('php://input');
$postData = json_decode($rawPostBody, true);//$postData is now an array