没有命名空间的类 yii yii\base yii\behaviors yii\caching yii\captcha yii\console yii\console\controllers yii\console\widgets yii\data yii\db yii\db\conditions yii\db\cubrid yii\db\cubrid\conditions yii\db\mssql yii\db\mssql\conditions yii\db\mysql yii\db\oci yii\db\oci\conditions yii\db\pgsql yii\db\sqlite yii\db\sqlite\conditions yii\di yii\filters yii\filters\auth yii\grid yii\helpers yii\i18n yii\log yii\mail yii\mutex yii\rbac yii\rest yii\test yii\validators yii\web yii\widgets

Class yii\web\JsonParser

继承yii\web\JsonParser
实现yii\web\RequestParserInterface
可用版本自2.0
源码 https://github.com/yiichina/yii2/blob/api/framework/web/JsonParser.php

Parses a raw HTTP request using yii\helpers\Json::decode().

To enable parsing for JSON requests you can configure yii\web\Request::$parsers using this class:

'request' => [
    'parsers' => [
        'application/json' => 'yii\web\JsonParser',
    ]
]

公共属性

隐藏继承的属性

属性类型描述被定义在
$asArray boolean Whether to return objects in terms of associative arrays. yii\web\JsonParser
$throwException boolean Whether to throw a yii\web\BadRequestHttpException if the body is invalid json yii\web\JsonParser

公共方法

隐藏继承的方法

方法描述被定义在
parse() Parses a HTTP request body. yii\web\JsonParser

属性详情

$asArray 公共 属性

Whether to return objects in terms of associative arrays.

public boolean $asArray true
$throwException 公共 属性

Whether to throw a yii\web\BadRequestHttpException if the body is invalid json

public boolean $throwException true

方法详情

parse() 公共 方法

Parses a HTTP request body.

public array parse($rawBody, $contentType)
$rawBody string

The raw HTTP request body.

$contentType string

The content type specified for the request body.

return array

Parameters parsed from the request body

throws yii\web\BadRequestHttpException

if the body contains invalid json and $throwException is true.