hospital-applets-api/app/Utils/HttpRequest.php
2023-02-17 17:10:16 +08:00

37 lines
826 B
PHP

<?php
namespace App\Utils;
use App\Constants\HttpEnumCode;
use App\Exception\BusinessException;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use Hyperf\Di\Annotation\Inject;
/**
* guzzle请求封装
*/
class HttpRequest
{
#[Inject]
protected Client $client;
/**
* 请求封装
* @param string $path
* @param array $option
* @return array
* @throws GuzzleException
*/
public function getRequest(string $path,array $option = []): array
{
$response = $this->client->post($path, $option);
if ($response->getStatusCode() != '200'){
// 请求失败
throw new BusinessException(HttpEnumCode::SERVER_ERROR,$response->getBody()->getContents());
}
return json_decode($response->getBody(),true);
}
}