Laravel源码解析之路由的使用和示例详解


Posted in PHP onSeptember 27, 2018

前言

我的解析文章并非深层次多领域的解析攻略。但是参考着开发文档看此类文章会让你在日常开发中更上一层楼。

废话不多说,我们开始本章的讲解。

入口

Laravel启动后,会先加载服务提供者、中间件等组件,在查找路由之前因为我们使用的是门面,所以先要查到Route的实体类。

注册

第一步当然还是通过服务提供者,因为这是laravel启动的关键,在 RouteServiceProvider 内加载路由文件。

protected function mapApiRoutes()
{
  Route::prefix('api')
     ->middleware('api')
     ->namespace($this->namespace) // 设置所处命名空间
     ->group(base_path('routes/api.php')); //所得路由文件绝对路径
}

首先require是不可缺少的。因路由文件中没有命名空间。 Illuminate\Routing\Router 下方法

protected function loadRoutes($routes)
{
  if ($routes instanceof Closure) {
    $routes($this);
  } else {
    $router = $this;

    require $routes;
  }
}

随后通过路由找到指定方法,依旧是 Illuminate\Routing\Router 内有你所使用的所有路由相关方法,例如get、post、put、patch等等,他们都调用了统一的方法 addRoute

public function addRoute($methods, $uri, $action)
{
  return $this->routes->add($this->createRoute($methods, $uri, $action));
}

之后通过 Illuminate\Routing\RouteCollection addToCollections 方法添加到集合中

protected function addToCollections($route)
{
  $domainAndUri = $route->getDomain().$route->uri();

  foreach ($route->methods() as $method) {
    $this->routes[$method][$domainAndUri] = $route;
  }

  $this->allRoutes[$method.$domainAndUri] = $route;
}

添加后的结果如下图所示

Laravel源码解析之路由的使用和示例详解

实例化

依旧通过反射加载路由指定的控制器,这个时候build的参数$concrete = App\Api\Controllers\XxxController

public function build($concrete)
{
  // If the concrete type is actually a Closure, we will just execute it and
  // hand back the results of the functions, which allows functions to be
  // used as resolvers for more fine-tuned resolution of these objects.
  if ($concrete instanceof Closure) {
    return $concrete($this, $this->getLastParameterOverride());
  }
  
  $reflector = new ReflectionClass($concrete);
  // If the type is not instantiable, the developer is attempting to resolve
  // an abstract type such as an Interface of Abstract Class and there is
  // no binding registered for the abstractions so we need to bail out.
  if (! $reflector->isInstantiable()) {
    return $this->notInstantiable($concrete);
  }
  
    
  $this->buildStack[] = $concrete;

  $constructor = $reflector->getConstructor();
  // If there are no constructors, that means there are no dependencies then
  // we can just resolve the instances of the objects right away, without
  // resolving any other types or dependencies out of these containers.
  if (is_null($constructor)) {
  
      array_pop($this->buildStack);
  
      return new $concrete;
  }

  $dependencies = $constructor->getParameters();
  // Once we have all the constructor's parameters we can create each of the
  // dependency instances and then use the reflection instances to make a
  // new instance of this class, injecting the created dependencies in.
  $instances = $this->resolveDependencies(
    $dependencies
  );

  array_pop($this->buildStack);
  
  return $reflector->newInstanceArgs($instances);
}

这时将返回控制器的实例,下面将通过url访问指定方法,一般控制器都会继承父类 Illuminate\Routing\Controller ,laravel为其设置了别名 BaseController

public function dispatch(Route $route, $controller, $method)
{
  
  $parameters = $this->resolveClassMethodDependencies(
    $route->parametersWithoutNulls(), $controller, $method
  );

  if (method_exists($controller, 'callAction')) {

      return $controller->callAction($method, $parameters);
  }
    
  return $controller->{$method}(...array_values($parameters));
}

Laravel通过controller继承的callAction去调用子类的指定方法,也就是我们希望调用的自定义方法。

public function callAction($method, $parameters)
{
  return call_user_func_array([$this, $method], $parameters);
}

致谢

感谢你看到这里,本篇文章源码解析靠个人理解。如有出入请拍砖。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

PHP 相关文章推荐
使用php重新实现PHP脚本引擎内置函数
Mar 06 PHP
php 变量定义方法
Jun 14 PHP
php设计模式 Factory(工厂模式)
Jun 26 PHP
php实现的通用图片处理类
Mar 24 PHP
php实现递归的三种基本方式
Jul 04 PHP
PHP5.5.15+Apache2.4.10+MySQL5.6.20配置方法分享
May 06 PHP
smarty循环嵌套用法示例分析
Jul 19 PHP
Yii2框架实现注册和登录教程
Sep 30 PHP
php array_keys 返回数组的键名
Oct 25 PHP
PHP防止图片盗用(盗链)的方法小结
Nov 11 PHP
PHP中Cookie的使用详解(简单易懂)
Apr 28 PHP
PHP实现转盘抽奖算法分享
Apr 15 PHP
php实现有序数组旋转后寻找最小值方法
Sep 27 #PHP
PHP实现SMTP邮件的发送实例
Sep 27 #PHP
ThinkPHP like模糊查询,like多匹配查询,between查询,in查询,一般查询书写方法
Sep 26 #PHP
thinkPHP利用ajax异步上传图片并显示、删除的示例
Sep 26 #PHP
多个Laravel项目如何共用migrations详解
Sep 25 #PHP
php中上传文件的的解决方案
Sep 25 #PHP
PHP调用微博接口实现微博登录的方法示例
Sep 22 #PHP
You might like
PHP 得到根目录的 __FILE__ 常量
2008/07/23 PHP
《PHP编程最快明白》第三讲:php数组
2010/11/01 PHP
PHP自动生成后台导航网址的最佳方法
2013/08/27 PHP
PHP基本语法总结
2014/09/06 PHP
PHP访问数据库集群的方法小结
2016/03/14 PHP
为数据添加append,remove功能
2006/10/03 Javascript
学习YUI.Ext 第六天--关于树TreePanel(Part 2异步获取节点)
2007/03/10 Javascript
自制轻量级仿jQuery.boxy对话框插件代码
2010/10/26 Javascript
js如何获取file控件的完整路径具体实现代码
2013/05/15 Javascript
js中的异常处理try...catch使用介绍
2013/09/21 Javascript
非html5实现js版弹球游戏示例代码
2013/09/22 Javascript
js+css实现文字散开重组动画特效代码分享
2015/08/21 Javascript
详解angularjs实现echart图表效果最简洁教程
2017/11/29 Javascript
使用nodejs+express实现简单的文件上传功能
2017/12/27 NodeJs
jQuery实现的下雪动画效果示例【附源码下载】
2018/02/02 jQuery
React中阻止事件冒泡的问题详析
2019/04/12 Javascript
Moment.js实现多个同时倒计时
2019/08/26 Javascript
全面了解Python的getattr(),setattr(),delattr(),hasattr()
2016/06/14 Python
Python登录注册验证功能实现
2018/06/18 Python
python使用turtle库与random库绘制雪花
2018/06/22 Python
Python 从一个文件中调用另一个文件的类方法
2019/01/10 Python
Python设计模式之装饰模式实例详解
2019/01/21 Python
python pandas生成时间列表
2019/06/29 Python
python中从for循环延申到推导式的具体使用
2019/11/29 Python
解决json中ensure_ascii=False的问题
2020/04/03 Python
为2021年的第一场雪锦上添花:用matplotlib绘制雪花和雪景
2021/01/05 Python
纯css3无js实现的Android Logo(有简单动画)
2013/01/21 HTML / CSS
猎人靴英国官网:Hunter Boots
2017/02/02 全球购物
俄罗斯最大的消费电子连锁零售商:Mvideo
2017/06/25 全球购物
加拿大时装零售商:Influence U
2018/12/22 全球购物
文秘专业个人求职信
2013/12/22 职场文书
高考备战决心书
2014/03/11 职场文书
愚人节活动策划方案
2014/03/11 职场文书
无偿献血倡议书
2014/04/14 职场文书
用Python监控你的朋友都在浏览哪些网站?
2021/05/27 Python
Win10服务全部禁用了怎么启动?Win10服务全部禁用解决方法
2022/09/23 数码科技