有时我得到报告,在jQuery Ajax查询$ _POST为空。 例如,OS X或Windows 7 Firefox上的Google Chrome有时候帖子是空的。 我无法弄清楚似乎是什么问题
jQuery.ajax({
url: "ajax.php",
method: "POST",
data: {
jqueryAjaxPostData: JSON.stringify({
name: "gen",
id: 1
})
},
processData: true,
dataType: "json",
failure: function ()
{
alert("Ajax failure")
}
});
已编辑:有PHP代码
$post = Variable::toArray(json_decode($this->Http->post("jqueryAjaxPostData")));