laravel源码解析之请求处理流程

2021/11/20 1:09:47

本文主要是介绍laravel源码解析之请求处理流程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.入口

laravel的请求处理入口在Illuminate\Foundation\Http\Kernel::handle方法里:

   public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Throwable $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }

2.启用请求方法覆盖

其实很简单,有些客户端无法发送PUT/PATCH等REST请求,所以使用参数来覆盖请求方法

在Symfony\Component\HttpFoundation\Request里

public function getMethod()
    {
        if (null !== $this->method) {
            return $this->method;
        }

        $this->m


这篇关于laravel源码解析之请求处理流程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程