diff --git a/src/Base/DzqController.php b/src/Base/DzqController.php index 392dd9ee2ea52e8a10ef161e97f1b3d00a7e3fb5..80ca6d6c888352fa71306ec806a28d2698630c1c 100644 --- a/src/Base/DzqController.php +++ b/src/Base/DzqController.php @@ -56,13 +56,7 @@ abstract class DzqController implements RequestHandlerInterface { $this->request = $request; $this->queryParams = $request->getQueryParams(); - $this->specialParamsChars($this->queryParams); - $postBody = $request->getParsedBody(); - if (!empty($postBody)) { - $this->parseBody = $postBody->toArray(); - $this->specialParamsChars($this->parseBody); - } - + $this->parseBody = $request->getParsedBody(); $this->requestId = Str::uuid(); $this->requestTime = date('Y-m-d H:i:s'); $this->app = app();