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 相关文章推荐
LotusPhp笔记之:基于ObjectUtil组件的使用分析
May 06 PHP
兼容各大浏览器带关闭按钮的漂浮多组图片广告代码
Jun 05 PHP
编译PHP报错configure error Cannot find libmysqlclient under usr的解决方法
Jun 27 PHP
使用php方法curl抓取AJAX异步内容思路分析及代码分享
Aug 25 PHP
PHP使用静态方法的几个注意事项
Sep 16 PHP
PHP中使用匿名函数操作数据库的例子
Nov 17 PHP
php实现读取和写入tab分割的文件
Jun 01 PHP
php把数组值转换成键的方法
Jul 13 PHP
windows8.1下Apache+Php+MySQL配置步骤
Oct 30 PHP
PHP MVC框架skymvc支持多文件上传
May 26 PHP
php curl优化下载微信头像的方法总结
Sep 07 PHP
yii框架使用分页的方法分析
Jul 25 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设计模式 Command(命令模式)
2011/06/26 PHP
使用CodeIgniter的类库做图片上传
2014/06/12 PHP
thinkphp数据查询和遍历数组实例
2014/11/28 PHP
PHP获取文件夹大小函数用法实例
2015/07/01 PHP
PHP convert_cyr_string()函数讲解
2019/02/13 PHP
PHP convert_uudecode()函数讲解
2019/02/14 PHP
js或者jquery判断图片是否加载完成实现代码
2013/03/20 Javascript
js function定义函数的几种不错方法
2014/02/27 Javascript
js用闭包遍历树状数组的方法
2014/03/19 Javascript
javascript常用的正则表达式实例
2014/05/15 Javascript
JsRender实用入门教程
2014/10/31 Javascript
js行号显示的文本框实现效果(兼容多种浏览器 )
2015/10/23 Javascript
jQuery中ajax的load()与post()方法实例详解
2016/01/05 Javascript
JavaScript 冒泡排序和选择排序的实现代码
2016/09/03 Javascript
AngularJS中$http使用的简单介绍
2017/03/17 Javascript
Angularjs验证用户输入的字符串是否为日期时间
2017/06/01 Javascript
vue路由前进后退动画效果的实现代码
2018/12/10 Javascript
node.js事件轮询机制原理知识点
2019/12/22 Javascript
js实现无刷新监听URL的变化示例代码详解
2020/06/03 Javascript
python实现系统状态监测和故障转移实例方法
2013/11/18 Python
Python实现批量读取word中表格信息的方法
2015/07/30 Python
浅谈python图片处理Image和skimage的区别
2019/08/04 Python
Django项目后台不挂断运行的方法
2019/08/31 Python
django创建css文件夹的具体方法
2020/07/31 Python
Pycharm安装python库的方法
2020/11/24 Python
使用Python通过oBIX协议访问Niagara数据的示例
2020/12/04 Python
localStorage的过期时间设置的方法详解
2018/11/26 HTML / CSS
如何在Canvas中添加事件的方法示例
2019/05/21 HTML / CSS
美国最受欢迎的度假租赁网站:VRBO
2016/08/02 全球购物
Joules美国官网:出色的英国风格
2017/10/30 全球购物
eBay美国官网:eBay.com
2020/10/24 全球购物
路政管理专业个人自荐信范文
2013/11/30 职场文书
教师网络培训感言
2014/03/09 职场文书
卫生保健工作总结2015
2015/05/18 职场文书
《雷雨》教学反思
2016/02/20 职场文书
CSS 一行代码实现头像与国旗的融合
2021/10/24 HTML / CSS