您的位置 首页 知识分享

jQuery $.post()和fetch发送POST请求时PHP接收数据差异何在?

jquery $.post() 与 fetch 发送数据时为何表现不同? 在使用 $_post 超全局变量处理…

jQuery $.post()和fetch发送POST请求时PHP接收数据差异何在?

jquery $.post() 与 fetch 发送数据时为何表现不同?

在使用 $_post 超全局变量处理 post 数据时,php 只支持 application/x-www-form-urlencoded 和 multipart/form-data 类型的表单数据。

然而,fetch 默认发送的是 json 数据,其请求头为 application/json。因此,即使前端代码使用 fetch 发送数据,也无法通过 $_post 正常获取。

立即学习“”;

前端:

  • 修改发送数据的请求头为 application/x-www-form-urlencoded,同时使用 qs 包将数据序列化。
fetch('http://localhost/', {   method: 'post',   headers: {     'content-type': 'application/x-www-form-urlencoded;charset=utf-8'   },   body: qs.stringify({     action: 'send_data',     talk_code: '11223344',     cid: '27',     token: 'crx',     content: '这是一条测试内容~~',   }) }).then(res => res.text()).then(json => console.log(json))
登录后复制

后端:

  • 使用 php://input 获取 post 数据并解析为数组。
$input = json_decode(file_get_contents('php://input'), true) ?: [];  if ($_SERVER['REQUEST_METHOD'] == 'POST') {     if (@$input['action'] == 'send_data') {} }
登录后复制

以上就是jQuery $.post()和fetch发送POST请求时PHP接收数据差异何在?的详细内容,更多请关注php中文网其它相关文章!

本文来自网络,不代表甲倪知识立场,转载请注明出处:http://www.spjiani.cn/wp/5933.html

作者: nijia

发表评论

您的电子邮箱地址不会被公开。

联系我们

联系我们

0898-88881688

在线咨询: QQ交谈

邮箱: email@wangzhan.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部