变更
This commit is contained in:
+2
-1
@@ -158,7 +158,8 @@ class RpcJsonp extends Component implements OnConnectInterface, OnReceiveInterfa
|
|||||||
public function onReceive(Server $server, int $fd, int $reactor_id, string $data): bool
|
public function onReceive(Server $server, int $fd, int $reactor_id, string $data): bool
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
if (!isJson($data)) return $server->send($fd, 'success', $reactor_id);
|
$data = json_decode($data, true);
|
||||||
|
if (is_null($data)) return $server->send($fd, 'success', $reactor_id);
|
||||||
$data = json_decode($data, true);
|
$data = json_decode($data, true);
|
||||||
if (!is_array($data)) {
|
if (!is_array($data)) {
|
||||||
throw new Exception('Parse error语法解析错误', -32700);
|
throw new Exception('Parse error语法解析错误', -32700);
|
||||||
|
|||||||
Reference in New Issue
Block a user