我正在尝试序列化HTML表单并通过Jquery通过POST操作发送它,目前我有以下Jquery:
var dataToSend = {
'name': 'person',
'description': 'very nice person'
}
$.ajax({
type: "POST",
url: "http://localhost/rest/PersonPOST.php",
data: JSON.stringify(dataToSend)
//contentType: 'application/json',
//dataType: 'json'
});
在服务器端我有一个PHP脚本打印它收到的内容,到目前为止我设法接收没有$ _POST变量的请求。 如果我取消注释contentType和dataType没有任何改变......
<?php
error_log("START POST");
foreach ($_POST as $key => $entry)
{
if (is_array($entry))
{
foreach ($entry as $value)
{
error_log($key . ": " . $value . "<br>");
}
}
else
{
error_log($key . ": " . $entry . "<br>");
}
}
?>
上述ajax请求有什么问题?
编辑:服务器端的file_get_contents('php:// input')正确打印应该在$ _POST变量内的内容。任何人都可以回答如何正常将其放入$ _POST变量或为什么不可能?谢谢
答案 0 :(得分:2)
您不需要stringify
,因为您已经在手动创建JSON对象。试试这样:
var dataToSend = {
'name': 'person',
'description': 'very nice person'
};
$.ajax({
type: "POST",
url: "http://localhost/rest/PersonPOST.php",
data: dataToSend
});