我正在使用 ajax 发送数据:
$('article.work a').click(function(e){
var h = $(this).attr('href');
e.preventDefault();
$.ajax({
type: "POST",
url: h,
data: workItems,
success: function(data){
console.log('success');
window.location = h;
},
error: function(){
console.log('eror');
}
});
});
它发送正常,在检查萤火虫帖子选项卡后,它看起来像:
所以我相信它正在发送正确的数据。但是当我尝试通过 php 从 $_POST 中检索它时,我做到了
<?php
print_r(json_decode($_POST["json"]));
?>;
什么都没有打印。
我究竟做错了什么?为什么即使发送了 $_POST 也无法识别我的数据?