Home > Backend Development > PHP Tutorial > Thinkphp3.2.3 接收不到json数据

Thinkphp3.2.3 接收不到json数据

WBOY
Release: 2016-06-06 20:11:11
Original
1477 people have browsed it

1.使用Thinkphp3.2.3,用来做APP的接口开发,但是在用POSTMAN模拟提交数据的时候I方法和$_POST都获取不到json数据,只能使用

<code>file_get_contents('php://input')</code>
Copy after login
Copy after login

来接收到数据.
请问有什么其他办法解决嘛?

Thinkphp3.2.3 接收不到json数据

Thinkphp3.2.3 接收不到json数据

回复内容:

1.使用Thinkphp3.2.3,用来做APP的接口开发,但是在用POSTMAN模拟提交数据的时候I方法和$_POST都获取不到json数据,只能使用

<code>file_get_contents('php://input')</code>
Copy after login
Copy after login

来接收到数据.
请问有什么其他办法解决嘛?

Thinkphp3.2.3 接收不到json数据

Thinkphp3.2.3 接收不到json数据

你怎么知道你没接收到数据?

POST JSON 的话,因该 'Content-Type: application/json; charset=utf-8',

由于PHP默认只识别application/x-www.form-urlencoded标准的数据类型,因此,对型如text/json的内容无法解析为$_POST数组,故保留原型,交给$GLOBALS['HTTP_RAW_POST_DATA'] 来接收。

php://input 允许读取 POST 的原始数据。和 $GLOBALS['HTTP_RAW_POST_DATA'] 比起来,它给内存带来的压力较小,并且不需要任何特殊的 php.ini 设置。php://input 不能用于 enctype="multipart/form-data"。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template