摘要:接著上篇分割線是的實例,但是文件中找不到方法在類內部看到,打開找到了方法,方法注釋寫的是主要用于運行應用以及發送響應主要看方法
接著上篇$app->run();
--------------------分割線------------------------
$app是Application的實例,但是Application.php文件中找不到run方法
在類內部看到use ConcernsRoutesRequests,打開找到了run方法,
run方法注釋寫的是主要用于運行應用以及發送響應
/** * Run the application and send the response. * * @param SymfonyRequest|null $request * @return void */ public function run($request = null) { $response = $this->dispatch($request); if ($response instanceof SymfonyResponse) { $response->send(); } else { echo (string) $response; } if (count($this->middleware) > 0) { $this->callTerminableMiddleware($response); } }
主要看dispatch方法
/** * Dispatch the incoming request. * * @param SymfonyRequest|null $request * @return Response */ public function dispatch($request = null) { list($method, $pathInfo) = $this->parseIncomingRequest($request); try { return $this->sendThroughPipeline($this->middleware, function () use ($method, $pathInfo) { if (isset($this->router->getRoutes()[$method.$pathInfo])) { return $this->handleFoundRoute([true, $this->router->getRoutes()[$method.$pathInfo]["action"], []]); } return $this->handleDispatcherResponse( $this->createDispatcher()->dispatch($method, $pathInfo) ); }); } catch (Exception $e) { return $this->prepareResponse($this->sendExceptionToHandler($e)); } catch (Throwable $e) { return $this->prepareResponse($this->sendExceptionToHandler($e)); } }
因為請求的URL是 api.com/index.php/
$method.$pathInfo 打印出來是 array(1) { [0]=> string(4) "GET/" }
$this->router->getRoutes()是獲取在web.php定義的所有路由,返回的是一個數組形式的數據:
array (size=3) "GET/" => array (size=3) "method" => string "GET" (length=3) "uri" => string "/" (length=1) "action" => array (size=1) 0 => object(Closure)[10] public "static" => array (size=1) "router" => object(LaravelLumenRoutingRouter)[6] public "app" => ......
所以isset($this->router->getRoutes()[$method.$pathInfo]) 的結果就是 true
接著調用handleFoundRoute方法
/** * Handle a route found by the dispatcher. * * @param array $routeInfo * @return mixed */ protected function handleFoundRoute($routeInfo) { $this->currentRoute = $routeInfo; $this["request"]->setRouteResolver(function () { return $this->currentRoute; }); $action = $routeInfo[1]; // Pipe through route middleware... if (isset($action["middleware"])) { $middleware = $this->gatherMiddlewareClassNames($action["middleware"]); return $this->prepareResponse($this->sendThroughPipeline($middleware, function () { return $this->callActionOnArrayBasedRoute($this["request"]->route()); })); } return $this->prepareResponse( $this->callActionOnArrayBasedRoute($routeInfo) ); }
如果有配置中間件的話還會有中間件的處理(后面再寫中間件的學習)
匹配到web.php里面的這個路由后
看到這段代碼$this->callActionOnArrayBasedRoute($routeInfo)
/** * Call the Closure on the array based route. * * @param array $routeInfo * @return mixed */ protected function callActionOnArrayBasedRoute($routeInfo) { $action = $routeInfo[1]; if (isset($action["uses"])) { return $this->prepareResponse($this->callControllerAction($routeInfo)); } foreach ($action as $value) { if ($value instanceof Closure) { $closure = $value->bindTo(new RoutingClosure); break; } } try { return $this->prepareResponse($this->call($closure, $routeInfo[2])); } catch (HttpResponseException $e) { return $e->getResponse(); } }
里面就是處理路由對應的響應方式,并且組裝響應數據準備返回
定義的路由是
$router->get("/", function () use ($router) { return $router->app->version(); });
匹配到路由之后對應的處理是
function () use ($router) { return $router->app->version(); //"Lumen (5.5.2) (Laravel Components 5.5.*)" }
所以$this->call($closure, $routeInfo[2])
得到的就是上一節的"Lumen (5.5.2) (Laravel Components 5.5.*)"
然后把處理后得到的數據傳進$this->prepareResponse()方法中組裝響應請求的數據
組裝完畢后,回到最初的run方法接著往下$response->send()
追蹤到SymfonyComponentHttpFoundationResponse這個類里面(組裝響應數據也是這里面)
/** * Sends content for the current web response. * * @return $this */ public function sendContent() { echo $this->content; return $this; } /** * Sends HTTP headers and content. * * @return $this */ public function send() { $this->sendHeaders(); $this->sendContent(); if (function_exists("fastcgi_finish_request")) { fastcgi_finish_request(); } elseif ("cli" !== PHP_SAPI) { static::closeOutputBuffers(0, true); } return $this; }
從這里看出,那段"Lumen (5.5.2) (Laravel Components 5.5.*)"就是在這里echo出來的
到此為止,可以大概知道了框架從請求到響應的基本流程
其中還有一些中間件,事件監聽等知識后續學習補上,有什么不對記得指出,互相學習~
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/26184.html
摘要:繼續學習分割線看看是怎么輸出這個數據目錄下的加載了下的的自動加載加載的配置初始化應用初始化的內容指定項目基礎目錄注冊服務容器注冊異常處理實例 繼續學習lumen5.5 -----------------------分割線----------------------- 看看是怎么輸出Lumen (5.5.2) (Laravel Components 5.5.*)這個數據 public目錄...
摘要:最近在學習框架寫接口,記憶力比較差所以順便寫下筆記分割線因為直接學最新版的所以,記得開啟的,,擴展還有可以用的打開命令 最近在學習lumen框架寫API接口,記憶力比較差所以順便寫下筆記~ -----------------------------分割線-------------------------------- 因為直接學最新版的所以,PHP >=7.0記得開啟php.ini的o...
摘要:想要做到這一點,你需要定義中間件為。如果你希望在及方法被調用時使用一致的中間件實例,只需在容器中使用容器的方法注冊中間件以上就是路由和中間件的學習,最后那那其實理解得有點虛,有錯記得指出修正,謝謝 前幾篇了解完從請求到響應的流程后,仔細學習下路由和中間件的玩法 ----------------------------------分割線--------------------------...
摘要:打開瀏覽器輸入,如無意外,將出現如下圖,表示框架安裝成功。四系統內部后臺管理系統這個是框架自帶的后臺登錄管理系統,只需要簡單的命令即可運行。出現上圖即為,創建模型成功。 在PHP個各種web開發框架中,laravel算是一款簡潔、優雅的開發框架,本人也剛剛接觸到laravel,通過學習大神們的一些文章,下面是我的一些心得體會,希望可以給初學者一些幫助,大家一起進步。言歸正傳: 本人環境...
閱讀 3694·2021-11-11 10:58
閱讀 2476·2021-09-22 15:43
閱讀 2869·2019-08-30 15:44
閱讀 2188·2019-08-30 13:08
閱讀 1821·2019-08-29 17:28
閱讀 884·2019-08-29 10:54
閱讀 675·2019-08-26 11:46
閱讀 3507·2019-08-26 11:43