gpt4 book ai didi

php - 使用 Postman 通过原始 JSON 发送 POST 数据

转载 作者:IT老高 更新时间:2023-10-28 11:55:03 24 4
gpt4 key购买 nike

我有 Postman(不能在 Chrome 中打开的那个),我正在尝试使用原始 JSON 发出 POST 请求。

在“正文”选项卡中,我选择了“原始”并使用此正文选择了“JSON(应用程序/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
)

那么为什么不使用 Postman 呢?


postman 截图:

enter image description here

和标题:

enter image description here

最佳答案

只需从二进制旁边的下拉菜单中选中 JSON 选项即可;当您单击原始时。应该这样做

skill synon pass json to postman

关于php - 使用 Postman 通过原始 JSON 发送 POST 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39008071/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com