最佳答案
我已经得到了 Postman (在 Chrome 中不打开的那个) ,并且正在尝试使用原始 JSON 执行一个 POST 请求。
在 Body 选项卡中,我选择了“ raw”和“ JSON (application/JSON)”作为主体:
{
"foo": "bar"
}
对于头部我有1,Content-Type: application/json
在 PHP 方面,我现在只使用 print_r($_POST);
,得到的是一个空数组。
如果我使用 jQuery 并执行以下操作:
$.ajax({
"type": "POST",
"url": "/rest/index.php",
"data": {
"foo": "bar"
}
}).done(function (d) {
console.log(d);
});
正如我所料:
Array
(
[foo] => bar
)
那为什么不和邮差合作呢?
邮递员截图:
标题: