我在PHP中接收POST请求时遇到问题。我正在使用JavaScript将数据发送到带有POST请求的PHP页面。 JavaScript来自OpenLayers.js,发送请求的部分如下所示:
var postrequest = OpenLayers.Request.POST({
url: "http://localhost/index.php",
data: "success",
headers: {
"Content-Type": "application/x-www-form-urlencoded"
}
});
在PHP中,我正在使用此代码来查看,我得到了什么:
<?php
print_r($_POST);
?>
这就是:
所以发送和接收数据,但我的PHP代码不知道它,或者我没有使用正确的PHP函数。
任何建议,在哪里寻找,以及尝试什么?
答案 0 :(得分:5)
我认为“data”属性需要是包含键/值对的对象。
例如:
var postrequest = OpenLayers.Request.POST({
url: "http://localhost/index.php",
data: {
userName: "myUsername",
password: "myPassword"
},
headers: {
"Content-Type": "application/x-www-form-urlencoded"
}
});
如果你在print_r($ _ POST)时这样做,你应该看到 array(“userName”=&gt;“myUsername”,“password”=&gt;“myPassword”)
答案 1 :(得分:0)
我猜您需要包含XMLHttpRequest.js库,您可以从此链接下载