This commit is contained in:
2021-03-23 18:29:03 +08:00
parent fbc96b3e60
commit 189c09f71a
+3 -2
View File
@@ -94,11 +94,12 @@ class Service extends Component
*/ */
public static function replace(Request $request, array $service): Request public static function replace(Request $request, array $service): Request
{ {
if (!is_array($body = $request->params->getBodyAndClear())) { $body = $request->params->getBodyAndClear();
if (is_string($body) && is_null($body = Json::decode($body))) {
throw new Exception('Protocol format error.'); throw new Exception('Protocol format error.');
} }
if (!isset($body['cmd'])) { if (!isset($body['cmd'])) {
throw new Exception('Protocol format error.'); throw new Exception('Unknown system cmd.');
} }
$request->params->setPosts($body); $request->params->setPosts($body);