Use Yii::$app->request->post(); to receive data from ios, and printing the received data will show that the value is null. If you use $_data = empty($_POST) ? json_decode(file_get_contents('php://input'), TRUE) : $_POST; you can get the value by receiving the data from ios, but as long as this data is not received, An error will be reported here. Please give me some guidance on the issue of data reception
Use Yii::$app->request->post(); to receive data from ios, and printing the received data will show that the value is null. If you use $_data = empty($_POST) ? json_decode(file_get_contents('php://input'), TRUE) : $_POST; you can get the value by receiving the data from ios, but as long as this data is not received, An error will be reported here. Please give me some guidance on the issue of data reception
Check the HTTP request header of IOS There should be a problem with the request header settings This has not happened to our company’s ios children’s shoe request interface
It may be that the json format was not specified when iOS uploaded it.
You can print $_SERVER['CONTENT_TYPE'] to see if it is application/json.
If not, try it
<code class="php">$_SERVER['CONTENT_TYPE'] = 'application/json'; Yii::$app->request->post();</code>
This should be the request package sent by ios that directly packages the message body into a message in json format.
So the PHP side needs to use file_get_contents('php://input') to get the message body.
I used to make request headers for iOS and asked him if the request headers were set properly
Besides, the formal method of extracting json data should be like this
$body = Yii::$app->request->getRawBody();
json_decode($body,true);
If your API is developed based on the Yii2 framework, you can receive data in the following ways:
get request method:
<code>$value = Yii::$app->request->get("参数名");</code>
Post request method:
<code>$value = Yii::$app->request->post("参数名");</code>
If the Content-Type when the client transmits data is application/json, then you need to configure the following in the request section of the config.php file:
<code>'request' => [ 'cookieValidationKey' => '5opbkVM6PYmVxcyNvHG1wK06fkIh0vYG', 'parsers' => [ 'application/json' => 'yii\web\JsonParser' ], ],</code>
In this way, you can successfully get the value passed in the form of json.
If the client serializes the object into json and delivers it, you can receive the object and save it to the database like this:
<code>$article = new Article(); $article->load(Yii::$app->getRequest()->getBodyParams(), ''); if (!$model->save()) { throw new ServerErrorHttpException('文章保存失败'); }</code>