我被分配到一个需要包含 Symfony 组件以重新组织其业务逻辑的项目。但是,我在查看 Symfony HTTP 基础文档时感到困惑。希望这里有人能帮我解释一下这个组件如何处理用户的 Http 请求和响应。
基本上,我在项目中所做的是:
拥有一个 PHP 页面会使用请求的 URL 和方法创建 Request 对象
使用 ApiRouter 将代码定向到所需的控制器
在控制器中,它将 HTTP 请求发送到服务器,并根据请求 URL 将响应转换为 Symfony 响应对象。
位置.php
class GetLocation
{
public function __construct($q)
{
$request = Request::create('location?v=full&q=' .
urlencode($q), 'GET'); //simulates a request using the url
$rest_api = new RestApi(); //passing the request to api router
$rest_api->apiRouter($request);
}
}
ApiRouter.php
//location router
$location_route = new Route(
'/location',
['controller' => 'LocationController']
);
$api_routes->add('location_route', $location_route);
//Init RequestContext object
$context = new RequestContext();
//generate the context from user passed $request
$context->fromRequest($request);
// Init UrlMatcher object matches the url path with router
// Find the current route and returns an array of attributes
$matcher = new UrlMatcher($api_routes, $context);
try {
$parameters = $matcher->match($request->getPathInfo());
extract($parameters, EXTR_SKIP);
ob_start();
$response = new Response(ob_get_clean());
} catch (ResourceNotFoundException $exception) {
$response = new Response('Not Found', 404);
} catch (Exception $exception) {
$response = new Response('An error occurred', 500);
}
我希望知道的是我对逻辑的理解是否正确?以及 Request:createFromGlobal 方法是什么意思,这个和 Request:create(URL) 有什么区别
如果我的问题需要更具体,请告诉我。